-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGruntfile.js
More file actions
38 lines (35 loc) · 749 Bytes
/
Copy pathGruntfile.js
File metadata and controls
38 lines (35 loc) · 749 Bytes
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
module.exports = function(grunt) {
var jsFiles = [
'lib/**/*.js',
'test/**/*.js'
];
grunt.initConfig({
watch: {
scripts: {
files: jsFiles,
tasks: ['default']
}
},
simplemocha: {
options: {
reporter: 'spec',
timeout: '5000'
},
full: {
src: ['test/test.js']
}
},
jshint: {
all: jsFiles,
options: {
jshintrc: '.jshintrc'
}
}
});
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-simple-mocha');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('hint', ['jshint']);
grunt.registerTask('test', ['simplemocha']);
grunt.registerTask('default', ['hint', 'test']);
};