-
Notifications
You must be signed in to change notification settings - Fork 61
/
Gruntfile.js
44 lines (33 loc) · 1.14 KB
/
Gruntfile.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
module.exports = function(grunt) {
grunt.registerTask('build', 'build the module', function() {
var done = this.async();
// runt ant to build the module
var ant = grunt.util.spawn({
cmd: 'ant'
}, function(error, result, code) {
if(error) {
grunt.fail.warn(error, code);
} else {
grunt.log.ok('build successful');
}
done(error, result);
});
ant.stdout.on('data', function(data) {
grunt.log.write(data);
});
ant.stderr.on('data', function(data) {
grunt.log.error(data);
});
});
grunt.registerTask('version', 'update version from package.json', function() {
// read files
var version = grunt.file.readJSON('package.json').version;
var manifest = grunt.file.read('manifest');
var readme = grunt.file.read('README.md');
// update manifest
grunt.file.write('manifest', manifest.replace(/^version.*$/m, "version: " + version));
// update readme
grunt.file.write('README.md', readme.replace(/gittio-[\d\.]{2,}-00B4CC\.svg/g, "gittio-" + version + "-00B4CC.svg"));
});
grunt.registerTask('default', ['version', 'build']);
};