forked from sindresorhus/grunt-concurrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
81 lines (74 loc) · 1.52 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
'use strict';
module.exports = function (grunt) {
grunt.initConfig({
concurrent: {
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.loadTasks('tasks');
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',
'concurrent:test',
'simplemocha',
'clean'
]);
};