mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
Reduce friction for building with npm (#2723)
This was the only dependency on bun that I encountered while building the project, and the change to the gitignore ensures that it's easy to make changes after an npm based build
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -13,7 +13,7 @@ dist
|
||||
*.log
|
||||
*.out.js
|
||||
*.out.refresh.js
|
||||
/package-lock.json
|
||||
**/package-lock.json
|
||||
build
|
||||
*.wat
|
||||
zig-out
|
||||
|
||||
@@ -21,6 +21,6 @@
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"typecheck": "tsc --noEmit",
|
||||
"postinstall": "cd node_modules/bktree-fast && bun x node-gyp configure build"
|
||||
"postinstall": "cd node_modules/bktree-fast && npx node-gyp configure build"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user