Skip to content

Commit

Permalink
chore(npm-release.sh): use npm run-script instead of npx run-s in rel…
Browse files Browse the repository at this point in the history
…ease script
  • Loading branch information
trxcllnt committed Jan 21, 2021
1 parent f0c111e commit b03597d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion npm-release.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
bump=${1:?missing required semantic-version bump. usage: \`$0 major|minor|patch\`}
echo "semantic-version bump: $bump"

npx run-s --silent lint build test
npm run --silent lint
npm run --silent build
npm run --silent test
npx lerna version \
--yes --force-publish=* \
--no-push --no-git-tag-version \
Expand Down

0 comments on commit b03597d

Please sign in to comment.