-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gruntfile.js
68 lines (61 loc) · 1.9 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
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-contrib-requirejs');
grunt.loadNpmTasks('grunt-contrib-qunit');
grunt.loadNpmTasks('grunt-qunit-junit');
grunt.loadNpmTasks('grunt-bg-shell');
grunt.loadNpmTasks('grunt-qunit-istanbul');
grunt.loadNpmTasks('grunt-coveralls');
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
requirejs: {
compile: {
options: {
baseUrl: "src",
name: "enum",
uglify: {
except: ["__"]
},
out: "dist/enum.min.js"
}
},
test: {
options: {
baseUrl: "src",
name: "enum",
out: "dist/enum.js",
optimize: "none"
}
}
},
qunit: {
options: {
'--web-security': 'no',
coverage: {
src: ['dist/enum.js'],
instrumentedFiles: 'temp/',
htmlReport: 'dist/report/coverage',
lcovReport: 'dist/report/lcov',
coberturaReport: 'dist/report/',
linesThresholdPct: 85
}
},
all: ['src/test/test-enumjs.html']
},
qunit_junit: {
options: {
dest: 'dist/test-reports'
}
},
coveralls: {
options: {
force: false
},
main_target: {
src: 'dist/report/lcov/lcov.info'
}
}
});
grunt.registerTask('build', ['requirejs:compile', 'requirejs:test']);
grunt.registerTask('test', ['requirejs:test', 'qunit_junit', 'qunit']);
grunt.registerTask('travis', ['test']);
};