From e68e2b4ad34e44e2f68bdb7d9d91509a4627874b Mon Sep 17 00:00:00 2001 From: Jason Dreyzehner Date: Wed, 10 Jul 2019 13:33:31 -0400 Subject: [PATCH] fix(package): remove misleading 'all' script fix #186 --- README.md | 4 ++-- package.json | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ca5ddc3..3b30e7d 100644 --- a/README.md +++ b/README.md @@ -173,8 +173,8 @@ You can also prepare a non-standard release: ```bash # Or a non-standard release: -# Build everything -npm run all +# Reset the repo to the latest commit and build everything +npm run reset && npm run test && npm run cov:check && npm run doc:html # Then version it with standard-version options. e.g.: # don't bump package.json version diff --git a/package.json b/package.json index 289709a..6910871 100644 --- a/package.json +++ b/package.json @@ -51,8 +51,7 @@ "version": "standard-version", "reset": "git clean -dfx && git reset --hard && npm i", "clean": "trash build test", - "all": "run-s reset test cov:check doc:html", - "prepare-release": "run-s all version doc:publish" + "prepare-release": "run-s reset test cov:check doc:html version doc:publish" }, "scripts-info": { "info": "Display information about the package scripts",