-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
118 lines (104 loc) · 2.99 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
'use strict';
var config = {
server: {
port: 5580,
host: 'localhost'
},
};
/*----- End of Configuration ------*/
var gulp = require('gulp');
var karma = require('karma').server;
var connect = require('gulp-connect');
var babel = require('gulp-babel');
var git = require('gulp-git');
var bump = require('gulp-bump');
var filter = require('gulp-filter');
var tagVersion = require('gulp-tag-version');
var request = require('request-json').createClient('https://api.github.com/');
// default task is to run test
gulp.task('default', function(done) {
connect.server({
port: config.server.port,
host: config.server.host
});
karma.start({
configFile: __dirname + '/karma.conf.js',
singleRun: true
}, done);
connect.serverClose();
});
gulp.task('test', function(done) {
connect.server({
port: config.server.port,
host: config.server.host
});
gulp.src('config.js');
karma.start({
configFile: __dirname + '/karma.conf.js'
}, done);
connect.serverClose();
});
gulp.task('live:dist', function(){
gulp.start('dist');
gulp.watch(__dirname + '/angular-swellrt.js',
function(){
gulp.start('dist');
});
});
gulp.task('dist', function(){
gulp.src(__dirname + '/angular-swellrt.js')
.pipe(babel({
presets: ['es2015']
}))
.pipe(gulp.dest(__dirname + '/dist'));
});
gulp.task('bump', function(done) {
request.get('repos/P2Pvalue/swellrt/tags', function(err, res, json) {
if (err || res.statusCode !== 200) {
done(-1);
}
var latest = json[0].name;
// First 3 swellrt tags were prefixed with wave-*
if (latest.startsWith('wave')) {
latest = json[3].name;
}
// Tags should bring a `v` prefixed
if (latest.startsWith('v')) {
latest = latest.substring(1);
}
gulp.src('swellrt.json')
.pipe(bump({version: latest}))
.pipe(gulp.dest('./'));
done();
});
});
/**
* 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 inc(importance) {
// get all the files to bump version in
return gulp.src(['./package.json', './bower.json'])
// bump the version number in those files
.pipe(bump({type: importance}))
// save it back to filesystem
.pipe(gulp.dest('./'))
// commit the changed version number
.pipe(git.commit('Bump SwellRT', {args: 'swellrt.json'}))
// read only one file to get the version number
.pipe(filter('package.json'))
// **tag it in the repository**
.pipe(tagVersion());
}
gulp.task('patch', ['bump'], function() { return inc('patch'); });
gulp.task('feature', ['bump'], function() { return inc('minor'); });
gulp.task('release', ['bump'], function() { return inc('major'); });