Fix deno npm run-p problem that was preventing TypeScript builds on Deno, by using build-only instead.

This commit is contained in:
Leo Vasanko
2026-01-17 16:40:43 +00:00
parent c6378e6abd
commit 1690b051c4
+3 -1
View File
@@ -51,8 +51,10 @@ def find_build_tool():
"npm": ("install",),
"bun": ("--bun", "install"),
}
# Use build-only for deno to avoid npm-run-all2 issues with run-p
# (run-p tries to spawn npm which doesn't exist in deno)
build = {
"deno": ("task", "build"),
"deno": ("task", "build-only"),
"npm": ("run", "build"),
"bun": ("--bun", "run", "build"),
}