Commit dfe1723
committed
[npm-app] fix bun run build
I was getting this error when running bun run build in /npm-app:
⎿ Error: $ bun run scripts/build-binary.js codebuff $(node -p "require('./release/package.json').version")
error: Script not found "scripts/build-binary.js"
error: script "build" exited with code 1
This was caused by calling `bun run scripts/build-binary.js`. When you pass
a javascript file directly to bun, you don't need the `run` keyword.1 parent b684f17 commit dfe1723
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | | - | |
| 23 | + | |
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
| |||
0 commit comments