-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
59 lines (53 loc) · 1.1 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
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-jsdoc');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-qunit');
grunt.initConfig({
jsdoc : {
dist : {
src: ['./dest/Scene.js', "README.md"],
options: {
destination: 'doc',
template: "./template"
}
}
},
concat : {
dist : {
src : [
"./src/prefix.js",
"./src/pre.js",
"./src/Scene.js",
"./src/constant.js",
"./src/SceneItem.js",
"./src/Frame.js",
"./src/Curve.js",
"./src/TimingFunction.js",
"./src/PropertyObject.js",
"./src/PropertyFunction.js",
"./src/Util.js",
"./src/Color.js",
"./src/CSSRole.js",
"./src/suffix.js",
],
dest : "./dest/Scene.js"
}
},
uglify: {
options: {
mangle: false
},
my_target: {
files: {
'./dest/Scene.min.js': ['./dest/Scene.js']
}
}
},
qunit: {
all : ["./test/*.html"]
}
});
grunt.registerTask('default', ["concat", "uglify", "qunit"]);
grunt.registerTask('doc', ["concat", "uglify", "jsdoc"]);
}