Skip to content

Commit

Permalink
fix: use npm install
Browse files Browse the repository at this point in the history
  • Loading branch information
bennycode committed Oct 18, 2023
1 parent 03aa071 commit 6f6fe9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"fix:lint": "npm run check:lint -- --fix --quiet",
"log": "git add CHANGELOG.md && git commit -m \"docs: updated CHANGELOG.md\"",
"postversion": "git push origin && git push origin --tags && npm publish --access public",
"preversion": "git checkout main && git pull && npm run && npm run test && npm run build",
"preversion": "git checkout main && git pull && npm install && npm run test && npm run build",
"release:major": "generate-changelog -M -x \"chore,test\" && npm run log && npm version major",
"release:minor": "generate-changelog -m -x \"chore,test\" && npm run log && npm version minor",
"release:patch": "generate-changelog -p -x \"chore,test\" && npm run log && npm version patch",
Expand Down

0 comments on commit 6f6fe9f

Please sign in to comment.