Make CLI build script Windows-friendly (#5835)

This commit is contained in:
Christopher Tso
2025-12-26 14:34:48 -06:00
committed by Aiden Cline
parent 267447018e
commit 31de4fc223
2 changed files with 15 additions and 2 deletions
+1 -1
View File
@@ -7,7 +7,7 @@
"scripts": {
"typecheck": "tsgo --noEmit",
"test": "bun test",
"build": "./script/build.ts",
"build": "bun run script/build.ts",
"dev": "bun run --conditions=browser ./src/index.ts",
"random": "echo 'Random script updated at $(date)' && echo 'Change queued successfully' && echo 'Another change made' && echo 'Yet another change' && echo 'One more change' && echo 'Final change' && echo 'Another final change' && echo 'Yet another final change'",
"clean": "echo 'Cleaning up...' && rm -rf node_modules dist",