-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile.js
55 lines (50 loc) · 1.08 KB
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
var gulp = require('gulp');
var replace = require('gulp-replace');
var bump = require('gulp-bump');
//
// Bump new patch version
// npm run bump:patch
//
gulp.task('bump:patch', function() {
gulp.src('package.json')
.pipe(bump({
type: 'patch'
}))
.pipe(gulp.dest('./'));
});
//
// Bump new patch version
// $ npm run bump:minor
//
gulp.task('bump:minor', function() {
gulp.src('package.json')
.pipe(bump({
type: 'minor'
}))
.pipe(gulp.dest('./'));
});
//
// Bump new major version
// $ npm run bump:major
//
gulp.task('bump:major', function() {
gulp.src('package.json')
.pipe(bump({
type: 'major'
}))
.pipe(gulp.dest('./'));
});
//
// Update meteor version
// $ npm run meteor
//
gulp.task('meteor', function() {
// current version
var version = require('./package.json').version;
// regex for package version and npm dependency version
var regex = /(version: ')([^\']+)'/gi;
return gulp.src('package.js')
// update version of meteor package
.pipe(replace(regex, '$1' + version + "'"))
.pipe(gulp.dest('./'));
});