123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- all: compile --no-optional
- compile:
- npm install --unsafe-perm --no-optional
- bower install --allow-root
- grunt
- release_patch:
- npm install --unsafe-perm --no-optional
- bower install --allow-root
- grunt bump:patch
- grunt
- grunt nexus -v
- git add Makefile bower.json package.json
- git commit -m "new patch release"
- git push master master
- release_minor:
- npm install --unsafe-perm --no-optional
- bower install --allow-root
- grunt bump:minor
- grunt
- grunt nexus
- git add Makefile bower.json package.json
- git commit -m "new minor release"
- git push master master
- release_major:
- npm install --unsafe-perm --no-optional
- bower install --allow-root
- grunt bump:major
- grunt
- grunt nexus
- git add Makefile bower.json package.json
- git commit -m "new major release"
- git push master master
|