Fix windows build with bun and wrapper files (#41)

This commit is contained in:
Simon Sawicki
2025-12-22 19:40:53 +01:00
committed by GitHub
parent f4189efdc7
commit 83777e845d

View File

@@ -49,7 +49,7 @@ def build_bundle_cmds():
elif bun := shutil.which("bun"):
name = "bun"
install = ["bun", "install", "--frozen-lockfile"]
install = [bun, "install", "--frozen-lockfile"]
bundle = [bun, "--bun", "run", "bundle"]
elif npm := shutil.which("npm"):