-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
69 lines (62 loc) · 1.7 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
'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'
}
}
},
jshint: {
gruntfile_tasks: ['Gruntfile.js', 'internal-tasks/*.js'],
libs_n_tests: ['lib/**/*.js', '<%= nodeunit.all %>'],
subgrunt: ['<%= subgrunt.all %>'],
options: {
jshintrc: '.jshintrc'
}
},
jscs: {
src: [
'lib/**/*.js',
'internal-tasks/**/*.js',
'test/**/*.js',
'!test/fixtures/**/*.js'
]
},
watch: {
gruntfile_tasks: {
files: ['<%= jshint.gruntfile_tasks %>'],
tasks: ['jshint:gruntfile_tasks']
},
libs_n_tests: {
files: ['<%= jshint.libs_n_tests %>'],
tasks: ['jshint:libs_n_tests', 'nodeunit']
},
subgrunt: {
files: ['<%= subgrunt.all %>'],
tasks: ['jshint:subgrunt', 'subgrunt']
}
},
subgrunt: {
all: ['test/gruntfile/*.js']
},
});
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-jscs');
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(['jshint', 'jscs', 'nodeunit:' + (reporter || 'all'), 'subgrunt']);
});
// Default task.
grunt.registerTask('default', ['test']);
};