Last active
March 24, 2016 16:45
-
-
Save erral/a79498657307e83ed557 to your computer and use it in GitHub Desktop.
Publish an atom package
This file contains 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 characters
Commit your changes. | |
Inspect your package.json file to check your current version number, and decide (if your package.json shows version 2.1.0): | |
- Register your package on atom.io | |
> apm login | |
1- You want to make a patch version release | |
> apm publish --tag v.2.1.1 patch | |
2- You want to make a minor version release | |
> apm publish --tag v.2.2.0 minor | |
3- You want to make a major version release | |
> apm publish --tag v.3.0.0 major |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment