File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2626 run : npm ci
2727
2828 - name : Copy prebuild artifacts
29- run : node scripts/copy-prebuilds .js --populate
29+ run : node scripts/prebuild .js --populate
3030
3131 - uses : actions/upload-artifact@v4
3232 with :
Original file line number Diff line number Diff line change 3838 "build" : " tsc -b ./src/tsconfig.json" ,
3939 "watch" : " tsc -b -w ./src/tsconfig.json" ,
4040 "lint" : " eslint -c .eslintrc.js --ext .ts src/" ,
41- "install" : " node ./scripts/copy-prebuilds .js || node-gyp rebuild" ,
41+ "install" : " node ./scripts/prebuild .js || node-gyp rebuild" ,
4242 "postinstall" : " node ./scripts/post-install.js" ,
4343 "test" : " cross-env NODE_ENV=test mocha -R spec --exit lib/*.test.js" ,
4444 "posttest" : " npm run lint" ,
Original file line number Diff line number Diff line change @@ -12,11 +12,11 @@ const path = require('path');
1212 * Usage:
1313 * To copy binaries from prebuilds/<platform>-<arch> to the build/Release:
1414 *
15- * node scripts/copy-prebuilds .js
15+ * node scripts/prebuild .js
1616 *
1717 * To copy the binaries from the build/Release directory to the prebuilds dir:
1818 *
19- * node scripts/copy-prebuilds .js --populate
19+ * node scripts/prebuild .js --populate
2020 */
2121
2222const POPULATE = process . argv . includes ( '--populate' ) ;
You can’t perform that action at this time.
0 commit comments