gulp-changelog-release
v0.0.11
Published
gulp-release-tasks =========
Downloads
3
Readme
gulp-release-tasks
scoped release tasks for gulp, to make your life easier :heart:
Usage
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
tagging
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
bumping
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
flags
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
Contributing
- 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