Skip to content

Instantly share code, notes, and snippets.

@erral
Last active March 24, 2016 16:45
Show Gist options
  • Save erral/a79498657307e83ed557 to your computer and use it in GitHub Desktop.
Save erral/a79498657307e83ed557 to your computer and use it in GitHub Desktop.
Publish an atom package
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