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

Latest commit

 

History

History
24 lines (17 loc) · 818 Bytes

RELEASING.md

File metadata and controls

24 lines (17 loc) · 818 Bytes

RELEASING

Step by step instructions to release a new version of the dress-code.

  1. Pull latest from the master branch and run the following command. Ensure that you follow the semver specification.

    git checkout master
    git pull
    npm run release [ major | minor | patch | <newversion> ]
    
  2. A release branch will be created and pushed automatically with a generated changelog. Confirm the changelog is accurate and clear. Feel free the manually edit the changelog in the release branch.

  3. Open a PR from the release branch to master.

  4. After the PR is merged, publish to npm. This will output the newly published version for verification, create and push the tag and deploy the demo.

    git checkout master
    git pull
    npm publish