Skip to content
This repository has been archived by the owner on Dec 29, 2020. It is now read-only.

Latest commit

 

History

History
14 lines (12 loc) · 712 Bytes

MAINTAN.md

File metadata and controls

14 lines (12 loc) · 712 Bytes

Maintainer Guide

Publishing a new version

  1. Determine which part of the version you are about to increase. We follow the Versioning & Semver section from the JSCS project.
  2. Run a bump script via npm. This will commit and tag the changed files:
    • npm run bump - will increase the patch version;
    • npm run bump-minor - will increase the minor version.
    • npm run bump-major - will increase the major version.
  3. Push changes and tags: git push --follow-tags
  4. Wait until the Travis-CI build finishes. It will publish a new version into npm. DO NOT USE npm publish! If something goes wrong, Travis will tell us.
  5. Done!