forked from Esri/terraformer-arcgis-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
83 lines (76 loc) · 2.17 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
module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
meta: {
version: '0.1.10',
banner: '/*! Terraformer ArcGIS Parser - <%= meta.version %> - <%= grunt.template.today("yyyy-mm-dd") %>\n' +
'* https://github.com/esri/terraformer-arcgis-parser\n' +
'* Copyright (c) <%= grunt.template.today("yyyy") %> Esri, Inc.\n' +
'* Licensed MIT */'
},
uglify: {
options: {
report: 'gzip'
},
arcgis: {
src: ["terraformer-arcgis-parser.js"],
dest: 'terraformer-arcgis-parser.min.js'
}
},
jasmine: {
coverage: {
src: [
"terraformer-arcgis-parser.js"
],
options: {
specs: 'spec/*Spec.js',
helpers:[
"node_modules/terraformer/terraformer.js"
],
//keepRunner: true,
outfile: 'SpecRunner.html',
template: require('grunt-template-jasmine-istanbul'),
templateOptions: {
coverage: './coverage/coverage.json',
report: './coverage',
thresholds: {
lines: 80,
statements: 80,
branches: 75,
functions: 80
}
}
}
}
},
jasmine_node: {
options: {
forceExit: true,
match: '.',
matchall: false,
extensions: 'js',
specNameMatcher: 'Spec',
helperNameMatcher: 'Helpers'
},
all: ['spec/']
},
complexity: {
generic: {
src: [ 'terraformer-arcgis-parser.js' ],
options: {
jsLintXML: 'complexity.xml', // create XML JSLint-like report
errorsOnly: false, // show only maintainability errors
cyclomatic: 6,
halstead: 15,
maintainability: 65
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jasmine');
grunt.loadNpmTasks('grunt-jasmine-node');
grunt.loadNpmTasks('grunt-complexity');
grunt.registerTask('test', [ 'jasmine', 'jasmine_node' ]);
grunt.registerTask('default', [ 'jasmine', 'jasmine_node', 'uglify' ]);
};