-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathGruntfile.js
87 lines (76 loc) · 1.49 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
module.exports = function(grunt) {
"use strict";
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-mocha-test');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-blanket');
grunt.loadNpmTasks('grunt-coveralls');
grunt.initConfig({
clean: {
coverage: {
src: ['coverage/']
},
reports: {
src: ['reports/']
}
},
copy: {
coverage: {
src: ['test/**', 'data/**'],
dest: 'coverage/'
}
},
blanket: {
coverage: {
src: ['src/'],
dest: 'coverage/src/'
}
},
mochaTest: {
'spec': {
options: {
reporter: 'spec'
},
src: ["coverage/test/**/*Test.js"]
},
'html-cov': {
options: {
reporter: 'html-cov',
quiet: true,
captureFile: 'reports/coverage.html'
},
src: ["coverage/test/**/*Test.js"]
},
'mocha-lcov-reporter': {
options: {
reporter: 'mocha-lcov-reporter',
quiet: true,
captureFile: 'reports/lcov.info'
},
src: ["coverage/test/**/*Test.js"]
},
},
coveralls: {
options: {
// Don't fail a build if coveralls fails
force: true
},
all: {
src: 'reports/lcov.info'
}
},
jshint: {
src: [
// Files to hint
"src/**/*.js",
"test/**/*.js"
],
options: {
jshintrc: '.jshintrc'
}
},
});
grunt.registerTask('default', ['jshint', 'clean', 'blanket', 'copy', 'mochaTest']);
grunt.registerTask('travis', ['default', 'coveralls']);
};