-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathGruntfile.js
132 lines (121 loc) · 3.56 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*global module*/
var bb = require('./index');
var path = require('path');
var generateChangeDetectionFiles = function (grunt) {
var srcs = [
'test/fixtures/parser-c32/VA_CCD_Sample_File_Version_12_5_1.xml',
'test/fixtures/parser-ccd/SampleCCDDocument.xml',
'test/fixtures/parser-ccda/CCD_1.xml'
];
var dest = 'test/fixtures/generated';
srcs.forEach(function (src) {
var content = grunt.file.read(src);
var sensed = bb.senseString(content);
var cms = sensed.type === 'cms';
var result = cms ? bb.parseText(content) : bb.parseString(content);
var baseName = path.basename(src, path.extname(src));
var destName = baseName + '.json';
var destPath = path.join(dest, destName);
var destContent = JSON.stringify(result, undefined, 2);
grunt.file.write(destPath, destContent);
});
};
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-run');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-jsbeautifier');
grunt.loadNpmTasks('grunt-contrib-connect');
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
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', 'lib/**/*.js', 'test/**/*.js'],
options: {
config: '.jsbeautifyrc'
}
},
check: {
src: ['Gruntfile.js', 'lib/**/*.js', 'test/**/*.js'],
options: {
mode: 'VERIFY_ONLY',
config: '.jsbeautifyrc'
}
}
},
run: {
test: {
exec: 'npx jest'
},
coverage: {
exec: 'npx jest --coverage'
}
},
connect: {
server: {
options: {
port: 8000,
hostname: '127.0.0.1'
}
}
}
});
grunt.registerTask('gen-change-detect', 'generates files to detect changes in generation', function () {
generateChangeDetectionFiles(grunt);
});
// Default task.
grunt.registerTask('default', ['beautify', 'jshint', 'test']); //, 'browser-test', 'gen-change-detect']);
//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());
});
grunt.registerTask('coverage', ['run:coverage']);
// Alias the `generator:ccda_samples` task to run `mocha test --recursive --grep generator` instead
grunt.registerTask('generator:ccda_samples', 'mocha test --recursive --grep [ccda_samples]', function () {
var done = this.async();
require('child_process').exec('mocha test --recursive --grep ccda_samples', function (err, stdout) {
grunt.log.write(stdout);
done(err);
});
});
//JS beautifier
grunt.registerTask('beautify', ['jsbeautifier:beautify']);
};