Point to Bun install instructions.

This commit is contained in:
Leo Vasanko 2025-08-13 10:49:23 -07:00
parent 05cc823e37
commit 20a5c66e77

View File

@ -17,7 +17,7 @@ class CustomBuildHook(BuildHookInterface):
npm = shutil.which("npm") npm = shutil.which("npm")
if npm is None: if npm is None:
raise RuntimeError( 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 # npm --prefix doesn't work on Windows, so we chdir instead
os.chdir("frontend") os.chdir("frontend")