scoped release tasks for gulp, to make your life easier ❤️
npm install gulp-release-tasks --save-dev
// add to gulpfile.js
var gulp = require('gulp');
// pass along gulp reference to have tasks imported
require('gulp-release-tasks')(gulp);
run gulp -T
for a list of available commands
bumps the versions of your package.json
and bower.json
task | version |
---|---|
gulp tag | v0.0.1 -> v0.0.2 + commit + tag + push |
gulp tag --minor | v0.0.1 -> v0.1.0 + commit + tag + push |
gulp tag --major | v0.0.1 -> v1.0.1 + commit + tag + push |
task | version |
---|---|
gulp bump | v0.0.1 -> v0.0.2 |
gulp bump --minor | v0.0.1 -> v0.1.0 |
gulp bump --major | v0.0.1 -> v1.0.1 |
limit versioning to single config instead of both
gulp tag --bower
- applies versioning to
bower.json
- applies versioning to
gulp tag --npm
- applys versioning to
package.json
- applys versioning to
gulp tag --npm --major
- v0.0.1 -> v1.0.1, applies versioning to
package.json
- v0.0.1 -> v1.0.1, applies versioning to
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request