-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
124 lines (117 loc) · 3.35 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
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
119
120
121
122
123
124
'use strict';
module.exports = function (grunt) {
grunt.initConfig({
preprocess: {
options: {
context: {
REVISION: '<%= meta.revision %>'
}
},
app: {
files: {
'dist/package.json': 'package.json.tpl',
'dist/readme.md': 'readme.md',
'dist/tasks/concurrentdep.js':'./tasks/concurrentdep.js'
}
}
},
jshint: {
options: {
jshintrc: true
},
all: ['Gruntfile.js', 'package.json', 'dist/package.json', 'dist/tasks/concurrentdep.js']
},
concurrentdep: {
test: ['test1', 'test2', 'test3'],
testargs: ['testargs1', 'testargs2'],
log: {
options: {
logConcurrentOutput: true
},
tasks: ['nodemon', 'watch']
}
},
simplemocha: {
test: {
src: 'test/*.js',
options: {
timeout: 6000
}
}
},
clean: {
test: ['test/tmp']
},
watch: {
scripts: {
files: ['tasks/*.js'],
tasks: ['default']
}
},
nodemon: {
dev: {
options: {
file: 'test/fixtures/server.js'
}
}
}
});
grunt.registerTask('revision','revision',function(property) {
var done = this.async();
grunt.util.spawn({
cmd: 'git',
args: ['rev-list','HEAD','--count']
}, function(err, result) {
if (err) {
grunt.log.error(err);
return done(false);
}
var revision = result.toString();
grunt.config('meta.revision', revision);
grunt.log.writeln('revision ' + revision);
done(true);
});
});
grunt.loadTasks('tasks');
grunt.loadNpmTasks('grunt-preprocess');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-simple-mocha');
grunt.loadNpmTasks('grunt-nodemon');
grunt.registerTask('test1', function () {
console.log('test1');
grunt.file.write('test/tmp/1');
});
grunt.registerTask('test2', function () {
var cb = this.async();
setTimeout(function () {
console.log('test2');
grunt.file.write('test/tmp/2');
cb();
}, 1000);
});
grunt.registerTask('test3', function () {
console.log('test3');
grunt.file.write('test/tmp/3');
});
grunt.registerTask('testargs1', function () {
var args = grunt.option.flags().join();
grunt.file.write('test/tmp/args1', args);
});
grunt.registerTask('testargs2', function () {
var args = grunt.option.flags().join();
grunt.file.write('test/tmp/args2', args);
});
grunt.registerTask('default', [
'clean',
'concurrentdep:test',
'simplemocha',
'clean'
]);
grunt.registerTask('dist', [
'revision',
'preprocess',
'jshint'
]);
};