Skip to content

Commit

Permalink
fix: missing "node" causes run script error (#4662)
Browse files Browse the repository at this point in the history
  • Loading branch information
c0dedance committed Oct 12, 2022
1 parent 5c74cd9 commit 8a2949e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -23,8 +23,8 @@
"lint:markdown:nofix": "prettier --check \"**/*.md\"",
"perf": "npm run build:cjs && node --expose-gc scripts/perf.js",
"perf:init": "node scripts/perf-init.js",
"prepare": "husky install && scripts/check-release.js || npm run build",
"prepublishOnly": "scripts/check-release.js",
"prepare": "husky install && node scripts/check-release.js || npm run build",
"prepublishOnly": "node scripts/check-release.js",
"release": "node scripts/release.js",
"test": "npm run build && npm run test:all",
"test:cjs": "npm run build:cjs && npm run test:only",
Expand Down

0 comments on commit 8a2949e

Please sign in to comment.