Gulpfile.js
2.34 KB
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
const assert = require('assert');
const del = require('del');
const eslint = require('gulp-eslint');
const exec = require('gulp-exec');
const File = require('fs');
const gulp = require('gulp');
const gutil = require('gulp-util');
const notify = require('gulp-notify');
const sourcemaps = require('gulp-sourcemaps');
const babel = require('gulp-babel');
// gulp -> gulp watch
gulp.task('default', ['watch']);
// gulp lint -> errors if code dirty
gulp.task('lint', function () {
return gulp.src([ 'js/**/*.js', 'test/*.js' ])
.pipe(eslint())
.pipe(eslint.formatEach())
.pipe(eslint.failOnError());
});
// gulp build -> compile coffee script
gulp.task('build', ['clean'], function() {
return gulp.src('src/**/*.js')
.pipe(sourcemaps.init())
.pipe(babel())
.pipe(sourcemaps.write('.'))
.pipe(gulp.dest('lib'))
.pipe(notify({
message: 'Zombie: built!',
onLast: true
}));
});
// gulp clean -> clean generated files
gulp.task('clean', function() {
return del('lib/**');
});
// gulp watch -> watch for changes and compile
gulp.task('watch', ['build'], function() {
return gulp.watch('src/*.js', ['clean', 'build']);
});
// gulp tag -> Tag this release
gulp.task('tag', ['changes'], function() {
const version = require('./package.json').version;
const tag = 'v' + version;
gutil.log('Tagging this release', tag);
return gulp.src('.changes')
.pipe( exec('git add package.json CHANGELOG.md') )
.pipe( exec('git commit --allow-empty -m "Version ' + version + '"') )
.pipe( exec('git tag ' + tag + ' --file .changes') )
.pipe( exec('git push origin ' + tag) )
.pipe( exec('git push origin master') );
});
// Generate a change log summary for this release
// git tag uses the generated .changes file
gulp.task('changes', function() {
const version = require('./package.json').version;
const changelog = File.readFileSync('CHANGELOG.md', 'utf-8');
const match = changelog.match(/^## Version (.*) .*\n([\S\s]+?)\n##/m);
assert(match, 'CHANGELOG.md missing entry: ## Version ' + version);
assert.equal(match[1], version, 'CHANGELOG.md missing entry for version ' + version);
const changes = match[2].trim();
assert(changes, 'CHANGELOG.md empty entry for version ' + version);
File.writeFileSync('.changes', changes);
});