Last active
April 26, 2017 18:37
Revisions
-
bradwestfall revised this gist
Apr 26, 2017 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,7 +10,8 @@ npm version major -m 'Git commit message' Push to GitHub ```sh //git push && git push --tags git push origin master --tags ``` Publish to NPM -
bradwestfall revised this gist
Jul 13, 2016 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,10 @@ Bump Semver - https://docs.npmjs.com/cli/version ```sh # One of these npm version patch -m 'Git commit message' npm version minor -m 'Git commit message' npm version major -m 'Git commit message' ``` Push to GitHub -
bradwestfall created this gist
Feb 23, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ Bump Semver - https://docs.npmjs.com/cli/version ```sh npm version patch -m 'Git commit message' ``` Push to GitHub ```sh git push && git push --tags ``` Publish to NPM ```sh npm publish ```