forked from picatic/node-permission-architect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
86 lines (82 loc) · 1.83 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
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
watch: {
lib: {
files: ['lib/**'],
tasks: ['jshint:lib', 'jasmine_node:all']
},
spec: {
files: ['specs/**', ],
tasks: ['jshint:specs', 'jasmine_node:all']
}
},
jasmine_node: {
coverage: {
print: 'both'
},
options: {
forceExit: true,
projectRoot: './lib',
match: '.',
matchall: false,
extensions: 'js',
specNameMatcher: 'spec',
captureExceptions: true,
jUnit: {
report: true,
savePath : "./build/reports/jasmine/",
useDotNotation: true,
consolidate: true
}
},
all: ['specs/']
},
jsdoc: {
dist: {
src: ['lib/**/*js'],
options: {
destination: 'doc',
'private': false
}
}
},
jshint: {
options: {
node: true
},
specs: {
options: {
globals: {
describe: false,
xdescribe: false,
beforeEach: false,
afterEach: false,
it: false,
xit: false,
spyOn: false,
jasmine: false,
expect: false
}
},
files: {
src: ['./specs/**/*.js']
}
},
lib: {
options: {},
files: {
src: ['./lib/**/*.js']
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-jasmine-node-coverage');
grunt.loadNpmTasks('grunt-jsdoc');
grunt.loadNpmTasks('grunt-contrib-jshint');
// Default task(s).
grunt.registerTask('default', ['watch']);
grunt.registerTask('travis', ['jshint:lib', 'jasmine_node:all']);
};