2017-04-11 22:14:25 +08:00
|
|
|
var gulp = require('gulp')
|
|
|
|
var bump = require('gulp-bump')
|
2017-04-13 21:53:23 +08:00
|
|
|
var tagVersion = require('gulp-tag-version')
|
2015-05-26 20:41:53 +02:00
|
|
|
|
2017-04-11 22:14:25 +08:00
|
|
|
gulp.task('bump', function () {
|
|
|
|
gulp.src('./bw.json')
|
2017-04-16 18:36:42 +08:00
|
|
|
.pipe(bump({ key: 'version' }))
|
|
|
|
.pipe(gulp.dest('./'))
|
2017-04-11 22:14:25 +08:00
|
|
|
})
|
2015-05-26 20:41:53 +02:00
|
|
|
|
|
|
|
// Assuming there's "version: 1.2.3" in package.json,
|
|
|
|
// tag the last commit as "v1.2.3"//
|
2017-04-11 22:14:25 +08:00
|
|
|
gulp.task('tag', function () {
|
2017-04-13 21:53:23 +08:00
|
|
|
return gulp.src(['./package.json']).pipe(tagVersion())
|
2017-04-11 22:14:25 +08:00
|
|
|
})
|
2015-05-26 20:41:53 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Bumping version number and tagging the repository with it.
|
|
|
|
* Please read http://semver.org/
|
|
|
|
*
|
|
|
|
* You can use the commands
|
|
|
|
*
|
|
|
|
* gulp patch # makes v0.1.0 → v0.1.1
|
|
|
|
* gulp feature # makes v0.1.1 → v0.2.0
|
|
|
|
* gulp release # makes v0.2.1 → v1.0.0
|
|
|
|
*
|
|
|
|
* To bump the version numbers accordingly after you did a patch,
|
|
|
|
* introduced a feature or made a backwards-incompatible release.
|
|
|
|
*/
|
|
|
|
|
2017-04-11 22:14:25 +08:00
|
|
|
function inc (importance) {
|
2017-04-16 18:36:42 +08:00
|
|
|
// get all the files to bump version in
|
2017-04-11 22:14:25 +08:00
|
|
|
return gulp.src(['./package.json'])
|
2017-04-16 18:36:42 +08:00
|
|
|
// bump the version number in those files
|
|
|
|
.pipe(bump({ type: importance }))
|
|
|
|
// save it back to filesystem
|
|
|
|
.pipe(gulp.dest('./'))
|
2015-05-26 20:41:53 +02:00
|
|
|
}
|
|
|
|
|
2017-04-11 22:14:25 +08:00
|
|
|
gulp.task('patch', function () { return inc('patch') })
|
|
|
|
gulp.task('feature', function () { return inc('minor') })
|
|
|
|
gulp.task('release', function () { return inc('major') })
|