-
Notifications
You must be signed in to change notification settings - Fork 503
/
gulpfile.js
89 lines (68 loc) · 2.94 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
var gulp = require('gulp');
var uglify = require('gulp-uglify');
var rename = require('gulp-rename');
gulp.task('default', function() {
return gulp.src('bootstrap-hover-dropdown.js')
// minifiy preserving preserved comments
.pipe(uglify({
preserveComments: 'some'
}))
// rename to .min.
.pipe(rename('bootstrap-hover-dropdown.min.js'))
.pipe(gulp.dest('.'));
});
var fs = require('fs');
var bump = require('gulp-bump');
var filter = require('gulp-filter');
var git = require('gulp-git');
var tagVersion = require('gulp-tag-version');
var replace = require('gulp-replace');
var streamqueue = require('streamqueue');
/**
* Bumping version number and tagging the repository with it.
* Please read http://semver.org/
*
* You can use the commands
*
* gulp patch # makes v0.1.0 → v0.1.1
* gulp feature # makes v0.1.1 → v0.2.0
* gulp release # makes v0.2.1 → v1.0.0
*
* To bump the version numbers accordingly after you did a patch,
* introduced a feature or made a backwards-incompatible release.
*/
function increment(importance) {
var packages = ['package.json', 'bower.json', 'composer.json'];
var currentVersion = JSON.parse(fs.readFileSync('bower.json')).version;
// get all the files to bump version in
gulp.src(packages)
// bump the version number in those files
.pipe(bump({ type: importance }))
// save it back to filesystem
.pipe(gulp.dest('.'))
.on('end', function () {
var newVersion = JSON.parse(fs.readFileSync('bower.json')).version;
var packagesStream = gulp.src(packages);
var jsStream = gulp.src(['bootstrap-hover-dropdown.js', 'bootstrap-hover-dropdown.min.js'])
// replace version # in the JS files
.pipe(replace('Version: v' + currentVersion, 'Version: v' + newVersion))
// save it back to filesystem
.pipe(gulp.dest('.'));
// merge the streams together to commit
streamqueue({ objectMode: true }, jsStream, packagesStream)
// commit the changed version number
.pipe(git.commit('bump packages\' version'))
// read only one file to get the version number
.pipe(filter('package.json'))
// **tag it in the repository**
.pipe(tagVersion())
// run npm publish
.on('end', function () {
var spawn = require('child_process').spawn;
spawn('npm', ['publish'], { stdio: 'inherit' });
});
});
}
gulp.task('patch', ['default'], function() { return increment('patch'); });
gulp.task('feature', ['default'], function() { return increment('minor'); });
gulp.task('release', ['default'], function() { return increment('major'); });