This repository has been archived by the owner on Mar 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathGruntfile.js
73 lines (66 loc) · 1.96 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
var fs = require('fs');
module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
meta: {
banner: '/*! Terraformer ArcGIS Parser - <%= pkg.version %> - <%= grunt.template.today("yyyy-mm-dd") %>\n' +
'* https://github.com/esri/terraformer-arcgis-parser\n' +
'* Copyright (c) 2013-<%= grunt.template.today("yyyy") %> Esri, Inc.\n' +
'* Licensed MIT */'
},
uglify: {
options: {
report: 'gzip',
banner: '<%= meta.banner %>'
},
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
// }
// }
}
}
},
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-complexity');
grunt.registerTask('test', ['jasmine']);
grunt.registerTask('version', ['test', 'uglify']);
grunt.registerTask('default', ['test']);
};