Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 404 Bytes

RELEASE.md

File metadata and controls

32 lines (21 loc) · 404 Bytes

Release

On release branch, run:

#set version to a new minor version (can also be major or patch)
npm version minor 

git push

git push --tags 

Merge release branch to master

Run in master:

npm install 

npm run build

npm publish

Backmerge master into develop

Run in develop:

npm version preminor --preid=develop --git-tag-version=false

git push