-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathgulpfile.js
66 lines (60 loc) · 1.47 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
56
57
58
59
60
61
62
63
64
65
66
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: /(version: ')([^\']+)'/gi,
npm: /('angular2-now': ')([^\']+)'/gi,
shrinkwrap: /("version": ")([^\"]+)"/gi,
};
gulp.src('.npm/package/npm-shrinkwrap.json')
// update version of angular2-now in npm-shrinkwrap
.pipe(replace(regex.shrinkwrap, '$1' + version + '"'))
.pipe(gulp.dest('.npm/package'));
return gulp.src('package.js')
// update version of meteor package
.pipe(replace(regex.version, '$1' + version + "'"))
// update version of npm dependency
.pipe(replace(regex.npm, '$1' + version + "'"))
.pipe(gulp.dest('./'));
});