Instruct type checker

This commit is contained in:
Leo Vasanko 2025-08-29 19:03:14 -06:00
parent e0717f005a
commit 6e80011eed

View File

@ -28,6 +28,7 @@ class CustomBuildHook(BuildHookInterface):
stderr.write("\n### npm run build\n") stderr.write("\n### npm run build\n")
subprocess.run([npm, "run", "build"], check=True) # noqa: S603 subprocess.run([npm, "run", "build"], check=True) # noqa: S603
else: else:
assert bun
stderr.write("### bun install\n") stderr.write("### bun install\n")
subprocess.run([bun, "install"], check=True) # noqa: S603 subprocess.run([bun, "install"], check=True) # noqa: S603
stderr.write("\n### bun run build\n") stderr.write("\n### bun run build\n")