Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 791 Bytes

CONTRIBUTING.md

File metadata and controls

46 lines (33 loc) · 791 Bytes

Contributing

Building

npm run build

Publishing to both npm and bower

tin -v VERSION
npm run build
git add -A
git commit -m 'VERSION'
git tag vVERSION
git push origin master --tags
npm publish

or, you can use: tin-npm, e.g.

tin-npm 0.0.2

Updating gh-pages

git checkout gh-pages
git merge master
git push

Setup for gh-pages (only do once)

git checkout -b gh-pages
git push --set-upstream origin gh-pages
git push

Setup Travis CI (only do once)

Setup Travis CI

Make small change to any file, e.g. add _Testing_ to the end of [README.md](README.md)
git add -A
git commit -m "feat(travis): first build for travis"
git push