-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathGruntfile.js
92 lines (80 loc) · 2.25 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
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON("package.json"),
peg: {
st: {
src: "compiler/stGrammar.pegjs",
dest: "compiler/stGrammar.js",
options: {
allowedStartRules: ["groupFile", "templateFile", "templateFileRaw", "templateAndEOF"]
}
}
},
jshint: {
options: {
bitwise: true,
curly: true,
eqeqeq: true,
indent: 4,
plusplus: false,
undef: true,
unused: true,
node: true
},
all: {
options: {
node: true
},
src: ["lib/*.js", "compiler/*.js"]
}
},
mochaTest: {
all: {
options: {
reporter: 'spec',
quiet: false,
clearRequireCache: true
},
src: ['test/**/*.js']
}
},
watch: {
grammar: {
files: ["compiler/stGrammar.pegjs"],
tasks: ["peg"],
options: {
spawn: false
}
},
code: {
files: ["lib/*.js", "compiler/*.js"],
tasks: ["jshint"],
options: {
spawn: false
}
},
tests: {
files: ["test/**/*.js", "lib/*.js", "compiler/*.js"],
tasks: ["mochaTest"],
options: {
spawn: false
}
}
}
});
//
// Load tasks
//
grunt.loadNpmTasks('grunt-peg');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-mocha-test');
grunt.loadNpmTasks('grunt-contrib-copy'); // xxx needed?
grunt.loadNpmTasks('grunt-contrib-uglify'); // xxx needed?
//
// Define tasks
//
// Default task(s).
grunt.registerTask('default', ['peg', "jshint", "mochaTest"]);
};