-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathGruntfile.js
40 lines (36 loc) · 907 Bytes
/
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
module.exports = function(grunt) {
var SRC = [
"src/vox.js",
"src/voxeldata.js",
"src/xhr.js",
"src/parser.js",
"src/meshbuilder.js",
"src/texturefactory.js",
"src/defaultpalette.js",
"src/md5.js",
];
grunt.loadNpmTasks("grunt-contrib-concat");
grunt.loadNpmTasks("grunt-contrib-watch");
grunt.loadNpmTasks("grunt-contrib-uglify");
grunt.initConfig({
concat: {
vox: {
src: SRC,
dest: "build/vox.js"
}
},
watch: {
vox: {
files: SRC,
tasks: ["concat"],
}
},
uglify: {
vox: {
src: "build/vox.js",
dest: "build/vox.min.js"
}
}
});
grunt.registerTask("default", ["concat", "uglify"]);
};