From 20a5c66e77edbe4fa820697f114f959e8b84d171 Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Wed, 13 Aug 2025 10:49:23 -0700 Subject: [PATCH] Point to Bun install instructions. --- scripts/build-frontend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-frontend.py b/scripts/build-frontend.py index e61d5d5..a4b35b3 100644 --- a/scripts/build-frontend.py +++ b/scripts/build-frontend.py @@ -17,7 +17,7 @@ class CustomBuildHook(BuildHookInterface): npm = shutil.which("npm") if npm is None: raise RuntimeError( - "Bun or NodeJS `npm` is required for building but neither was found" + "Bun or NodeJS `npm` is required for building but neither was found\n Visit https://bun.com/" ) # npm --prefix doesn't work on Windows, so we chdir instead os.chdir("frontend")