Skip to content
This repository has been archived by the owner on Aug 5, 2022. It is now read-only.

Commit

Permalink
add version example
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenlacy committed Jun 20, 2016
1 parent 9e91a7b commit 6a59b7f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions examples/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ gulp.task('bump', function(){
.pipe(gulp.dest('./build'));
});

gulp.task('version', function(){
gulp.src('./package.json')
.pipe(bump({version: '1.2.3'}))
.pipe(gulp.dest('./version'));
});

gulp.task('key', function(){
gulp.src('./key.json')
.pipe(bump({key: 'appversion'}))
Expand Down

0 comments on commit 6a59b7f

Please sign in to comment.