-
Notifications
You must be signed in to change notification settings - Fork 9
/
Gruntfile.js
43 lines (41 loc) · 1.38 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
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
// This line makes your node configurations available for use
pkg: grunt.file.readJSON('package.json'),
convert: {
yml2json: {
files: [{
expand: true,
cwd: 'resources/',
src: ['**/*.yml'],
dest: 'resources/json/',
ext: '.json'
}]
}
},
"concat-json": {
mdjson: {
src: ["iso_*.json","adiwg_*.json"],
dest: "resources/json/mdcodes.json",
cwd: "resources/json",
options: {
space: " "
}
}
},
yamllint: {
all: ['resources/**/*.yaml']
}
});
// Each plugin must be loaded following this pattern
grunt.loadNpmTasks('grunt-convert');
grunt.loadNpmTasks('grunt-concat-json');
grunt.loadNpmTasks('grunt-yamllint');
// Custom task(s).
// First argument names the task for use in command line
// Second argument is a list of tasks to be run
grunt.registerTask('default', ['yamllint:all', 'convert:yml2json', 'concat-json:mdjson']);
grunt.registerTask('concat', ['concat-json:mdjson']);
grunt.registerTask('lint', ['yamllint:all']);
};