Skip to content

Commit e68e2b4

Browse files
committed
fix(package): remove misleading 'all' script
fix #186
1 parent 54bd4f9 commit e68e2b4

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ You can also prepare a non-standard release:
173173
```bash
174174
# Or a non-standard release:
175175

176-
# Build everything
177-
npm run all
176+
# Reset the repo to the latest commit and build everything
177+
npm run reset && npm run test && npm run cov:check && npm run doc:html
178178

179179
# Then version it with standard-version options. e.g.:
180180
# don't bump package.json version

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@
5151
"version": "standard-version",
5252
"reset": "git clean -dfx && git reset --hard && npm i",
5353
"clean": "trash build test",
54-
"all": "run-s reset test cov:check doc:html",
55-
"prepare-release": "run-s all version doc:publish"
54+
"prepare-release": "run-s reset test cov:check doc:html version doc:publish"
5655
},
5756
"scripts-info": {
5857
"info": "Display information about the package scripts",

0 commit comments

Comments
 (0)