Skip to content
This repository has been archived by the owner on Apr 30, 2018. It is now read-only.

Commit

Permalink
fix(build): Fix issue with publish:latest
Browse files Browse the repository at this point in the history
  • Loading branch information
Kent C. Dodds committed Aug 28, 2015
1 parent fcd282b commit dca5745
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 @@ -29,7 +29,7 @@
"code-checks": "eslint src/",
"commit": "git-cz",
"prepublish:latest": "node scripts/authorize-push.js",
"publish:latest": "git fetch && git checkout latest origin/latest && git add dist && with-package git commit -m pkg.version && with-package F_VERSION=pkg.version git tag v${F_VERSION} -f && git push origin latest --tags -f",
"publish:latest": "git fetch && git checkout -b latest origin/latest && git add dist && with-package git commit -m pkg.version && with-package F_VERSION=pkg.version git tag v${F_VERSION} -f && git push origin latest --tags -f",
"semantic-release": "semantic-release pre && npm run build && npm publish && semantic-release post && npm run publish:latest"
},
"betterScripts": {
Expand Down

0 comments on commit dca5745

Please sign in to comment.