Skip to content

Commit

Permalink
Remove build script from release scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
bjankord committed Oct 30, 2021
1 parent ca20be1 commit a1f3423
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -42,9 +42,9 @@
"tape": "^5.3.1"
},
"scripts": {
"release:major": "npm test && npm run build && npm version major -m \"Released version %s\" && npm publish && git push --follow-tags",
"release:minor": "npm test && npm run build && npm version minor -m \"Released version %s\" && npm publish && git push --follow-tags",
"release:patch": "npm test && npm run build && npm version patch -m \"Released version %s\" && npm publish && git push --follow-tags",
"release:major": "npm test && npm version major -m \"Released version %s\" && npm publish && git push --follow-tags",
"release:minor": "npm test && npm version minor -m \"Released version %s\" && npm publish && git push --follow-tags",
"release:patch": "npm test && npm version patch -m \"Released version %s\" && npm publish && git push --follow-tags",
"stylelint-failing-case": "cd __tests__/manual-test-cases; stylelint failing-test-cases.scss",
"stylelint-passing-case": "cd __tests__/manual-test-cases; stylelint passing-test-cases.scss",
"test": "tape \"__tests__/unit/*.spec.js\""
Expand Down

0 comments on commit a1f3423

Please sign in to comment.