Skip to content

Latest commit

 

History

History
17 lines (17 loc) · 411 Bytes

File metadata and controls

17 lines (17 loc) · 411 Bytes

Contributing

Deploying

Bump the version

npm --no-git-tag-version version <major|minor|patch>
git add package.json

Update the change log and stage it

git add CHANGELOG.md

Build

gulp build

Commit the build directory

git add -f docs
git commit -m 'Bump to version X.Y.Z'

Tag

git tag -a vX.Y.Z -m 'Version X.Y.Z'

Push

git push
git push origin vX.Y.Z