New version

This commit is contained in:
knsv
2015-10-04 23:09:00 +02:00
parent 8258fb059c
commit a611ff3abd
17 changed files with 140 additions and 84 deletions

View File

@@ -1,4 +1,5 @@
var gulp = require('gulp');
var bump = require('gulp-bump');
gulp.task('bump', function(){
gulp.src('./bw.json')
@@ -28,7 +29,7 @@ gulp.task('tag', function() {
function inc(importance) {
// get all the files to bump version in
return gulp.src(['./package.json', './bower.json'])
return gulp.src(['./package.json'])
// bump the version number in those files
.pipe(bump({type: importance}))
// save it back to filesystem