Skip to content

Commit 3064694

Browse files
committed
use rebuild-all instead of build
1 parent 195b689 commit 3064694

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ You can build all frameworks by issuing:
288288

289289
```
290290
cd ..
291-
npm run build-prod
291+
npm run rebuild-all
292292
```
293293

294294
After downloading the whole internet it starts building it. Basically there should be no errors during the build, but I can't guarantee that the dependencies won't break.

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
"type": "module",
66
"scripts": {
77
"clean": "node cleanup.js",
8-
"build": "node rebuild-all.js --ci",
9-
"build-prod": "node rebuild-all.js --ci",
8+
"rebuild-all": "node rebuild-all.js --ci",
9+
"build": "echo \"Please use 'npm run rebuild-all' instead\" && exit 1",
10+
"build-prod": "echo \"Please use 'npm run rebuild-all' instead\" && exit 1",
1011
"compile": "node rebuild-all.js --ci",
1112
"start": "cd server && node index.js",
1213
"bench": "cd webdriver-ts && cross-env LANG=\"en_US.UTF-8\" node dist/benchmarkRunner.js",

0 commit comments

Comments
 (0)