-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
83 lines (78 loc) · 1.95 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
/*global module*/
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-jsbeautifier');
grunt.loadNpmTasks('grunt-run');
// Project configuration.
grunt.initConfig({
jshint: {
files: ['*.js', './lib/*.js', './test/*.js'],
options: {
browser: true,
smarttabs: true,
curly: true,
eqeqeq: true,
immed: true,
latedef: true,
newcap: true,
noarg: true,
sub: true,
undef: false,
boss: true,
eqnull: true,
node: true,
expr: true,
globals: {
'it': true,
'xit': true,
'describe': true,
'expect': true,
'before': true,
'after': true,
'done': true
}
}
},
watch: {
all: {
files: ['./lib/*.js', '*.js', './test/*.js'],
tasks: ['default']
}
},
jsbeautifier: {
beautify: {
src: ['Gruntfile.js', '*.js', 'lib/*.js', 'lib/**/*.js', 'test/*.js', 'test/**/*.js'],
options: {
config: '.jsbeautifyrc'
}
},
check: {
src: ['Gruntfile.js', '*.js', 'lib/*.js', 'lib/**/*.js', 'test/*.js', 'test/**/*.js'],
options: {
mode: 'VERIFY_ONLY',
config: '.jsbeautifyrc'
}
}
},
run: {
test: {
exec: 'npx jest'
},
coverage: {
exec: 'npx jest --coverage'
}
}
});
// Default task.
grunt.registerTask('default', ['beautify', 'jshint', 'test']);
//Express omitted for travis build.
grunt.registerTask('commit', ['jshint', 'test']);
grunt.registerTask('test', ['run:test']);
grunt.registerTask('coverage', ['run:coverage']);
grunt.registerTask('timestamp', function () {
grunt.log.subhead(Date());
});
//JS beautifier
grunt.registerTask('beautify', ['jsbeautifier:beautify']);
};