forked from gruntjs/grunt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
57 lines (50 loc) · 1.44 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
'use strict';
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
nodeunit: {
all: ['test/{grunt,tasks,util}/**/*.js'],
tap: {
src: '<%= nodeunit.all %>',
options: {
reporter: 'tap',
reporterOutput: 'tests.tap'
}
}
},
eslint: {
gruntfileTasks: ['Gruntfile.js', 'internal-tasks/*.js'],
libsAndTests: ['lib/**/*.js', '<%= nodeunit.all %>'],
subgrunt: ['<%= subgrunt.all %>']
},
watch: {
gruntfileTasks: {
files: ['<%= eslint.gruntfileTasks %>'],
tasks: ['eslint:gruntfileTasks']
},
libsAndTests: {
files: ['<%= eslint.libsAndTests %>'],
tasks: ['eslint:libsAndTests', 'nodeunit']
},
subgrunt: {
files: ['<%= subgrunt.all %>'],
tasks: ['eslint:subgrunt', 'subgrunt']
}
},
subgrunt: {
all: ['test/gruntfile/*.js']
},
});
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-eslint');
grunt.loadNpmTasks('grunt-contrib-nodeunit');
grunt.loadNpmTasks('grunt-contrib-watch');
// Some internal tasks. Maybe someday these will be released.
grunt.loadTasks('internal-tasks');
// "npm test" runs these tasks
grunt.registerTask('test', '', function(reporter) {
grunt.task.run(['eslint', 'nodeunit:' + (reporter || 'all'), 'subgrunt']);
});
// Default task.
grunt.registerTask('default', ['test']);
};