Skip to content

Commit

Permalink
Uncomment stuff in gulp that I didn't mean to leave commented.
Browse files Browse the repository at this point in the history
CWSpear committed Feb 8, 2015
1 parent cc227da commit a7aad64
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -48,14 +48,14 @@ function increment(importance) {
// save it back to filesystem
.pipe(gulp.dest('.'))

// // commit the changed version number
// .pipe(git.commit('bump packages\' version'))
// commit the changed version number
.pipe(git.commit('bump packages\' version'))

// // read only one file to get the version number
// .pipe(filter('bower.json'))
// read only one file to get the version number
.pipe(filter('bower.json'))

// // **tag it in the repository**
// .pipe(tagVersion())
// **tag it in the repository**
.pipe(tagVersion())

.on('end', function () {
var newVersion = JSON.parse(fs.readFileSync('bower.json')).version;

0 comments on commit a7aad64

Please sign in to comment.