Update the project to run with modern uv/bun (or python/nodejs) environment #7

Merged
LeoVasanko merged 43 commits from rejuvenile into main 2025-08-15 18:03:04 +01:00
Showing only changes of commit 20a5c66e77 - Show all commits

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")