Skip to content

Commit

Permalink
ci: 🐛 fix no build when releasing
Browse files Browse the repository at this point in the history
  • Loading branch information
vivaxy committed May 19, 2020
1 parent f806910 commit 6aa9143
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"build": "tsc",
"test": "jest",
"coverage": "jest --collect-coverage",
"release:beta": "npm run coverage && standard-version --prerelease beta && npm publish --tag beta && git push --follow-tags",
"release": "npm run coverage && standard-version && npm publish && git push --follow-tags"
"release:beta": "npm run build && npm run coverage && standard-version --prerelease beta && npm publish --tag beta && git push --follow-tags",
"release": "npm run build && npm run coverage && standard-version && npm publish && git push --follow-tags"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 6aa9143

Please sign in to comment.