forked from dice-roller/rpg-dice-roller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
61 lines (51 loc) · 1.13 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
/*global module, require*/
module.exports = grunt => {
'use strict';
const gruntConfig = {
pkg: grunt.file.readJSON('package.json')
};
// lint
grunt.loadNpmTasks('grunt-contrib-jshint');
gruntConfig.jshint = {
all: [
'Gruntfile.js',
'dice-roller.js'
],
options: {
jshintrc: true
}
};
grunt.registerTask('lint', 'jshint');
// test
grunt.loadNpmTasks('grunt-contrib-jasmine');
gruntConfig.jasmine = {
src: {
src: [
'dice-roller.js'
],
options: {
helpers: 'tests/helpers/*.helper.js',
specs: 'tests/*.test.js',
junit: {
path: 'output/testresults'
}
}
}
};
grunt.registerTask('test', 'jasmine:src');
// watch
/*grunt.loadNpmTasks('grunt-contrib-watch');
gruntConfig.watch = {
scripts: {
files: ['dice-roller.js'],
tasks: ['lint', 'test']
}
};*/
// grunt
grunt.initConfig(gruntConfig);
// convenience
grunt.registerTask('default', ['lint', 'test']);
grunt.registerTask('all', ['default']);
// continuous integration
grunt.registerTask('ci', ['lint', 'test']);
};