gulp-release-tasks icon indicating copy to clipboard operation
gulp-release-tasks copied to clipboard

release tasks for use w gulp, node, and or bower

Results 8 gulp-release-tasks issues
Sort by recently updated
recently updated
newest added

When using "gulp tag" it bumps the package.json version but the package-lock.json file is left behind, out of sync.

PR which makes behavior of the plugin like this one: https://github.com/geddski/grunt-release It is quite annoying always add commit message, as it is releasing and can be static + publishing to...

https://github.com/lfender6445/gulp-release-tasks/blob/master/tasks/release.js#L36 This means all tags made with this module will be prefixed with a 'v' as per https://github.com/ikari-pl/gulp-tag-version

Chrome extension projects use similar format to that of package.json, with "version" property.

We use bower with private hosted repos. It would be nice if this task would support pre-release alpha/beta formats like 0.0.1-alpha.7

`gulp tag` isn't working properly. What he is doing is: 1. bump the version in bower.json to `0.1.1` 2. `git commit -am '...'` bower.json file 3. `git tag v0.1.1` 4....