forked from SBoudrias/require.replace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
63 lines (51 loc) · 1.29 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
// This is the main application configuration file. It is a Grunt
// configuration file, which you can learn more about here:
// https://github.com/cowboy/grunt/blob/master/docs/configuring.md
/*jshint strict:false */
module.exports = function( grunt ) {
var files = [
"Gruntfile.js",
"require.replace.js",
"test/mocha/specs/*.js"
];
grunt.initConfig({
clean: {
test: [ "test/mocha/build" ]
},
jshint: {
options: {
jshintrc : ".jshintrc"
},
files: files
},
watch: {
files: files,
tasks: "travis"
},
connect: {
run: {
options: {
port: 3000,
keepalive: true
}
}
},
mocha: {
all: [ "test/mocha/**/*.html" ]
},
simplemocha: {
options: {
ui: "bdd",
reporter: "spec"
},
all: "test/mocha/node.js"
}
});
grunt.loadNpmTasks("grunt-contrib-clean");
grunt.loadNpmTasks("grunt-contrib-jshint");
grunt.loadNpmTasks("grunt-contrib-connect");
grunt.loadNpmTasks("grunt-mocha"); // client side mocha
grunt.loadNpmTasks("grunt-simple-mocha"); // server side mocha
grunt.registerTask("default", [ "jshint", "mocha", "simplemocha", "clean:test" ]);
grunt.registerTask("travis", [ "default" ]);
};