To publish frame-throttle to NPM, do the following steps:
- Run the following:
git checkout master git pull
- Decide whether the release is a major, minor, or patch release.
- Find out what the next version will be given the version bump level and standard semver symantics.
- Update CHANGELOG.md references and links to "UNRELEASED" with the new version number.
- Commit those changes.
- Run the following:
Where
npm version <major|minor|patch>
<major|minor|patch>
is the bump level determined earlier. - Run:
git push --tags origin master npm publish