Skip to content

Commit

Permalink
use rebuild-all instead of build
Browse files Browse the repository at this point in the history
  • Loading branch information
krausest committed Nov 30, 2023
1 parent 195b689 commit 3064694
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ You can build all frameworks by issuing:

```
cd ..
npm run build-prod
npm run rebuild-all
```

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.
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
"type": "module",
"scripts": {
"clean": "node cleanup.js",
"build": "node rebuild-all.js --ci",
"build-prod": "node rebuild-all.js --ci",
"rebuild-all": "node rebuild-all.js --ci",
"build": "echo \"Please use 'npm run rebuild-all' instead\" && exit 1",
"build-prod": "echo \"Please use 'npm run rebuild-all' instead\" && exit 1",
"compile": "node rebuild-all.js --ci",
"start": "cd server && node index.js",
"bench": "cd webdriver-ts && cross-env LANG=\"en_US.UTF-8\" node dist/benchmarkRunner.js",
Expand Down

0 comments on commit 3064694

Please sign in to comment.