-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gruntfile.js
85 lines (72 loc) · 2.07 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
module.exports = function(grunt) {
grunt.initConfig({
src: {
js: ["src/js/timeline.js", "src/js/data.js", "src/js/panel.js"],
less: ["src/less/main.less"],
},
indent: {
release: {
src: "<%= src.js %>",
dest: "build-tmp/",
options: {
style: "space",
size: 4,
change: 1,
},
},
},
less: {
development: {
options: {
paths: ["src/css"]
},
files: {
"d3-timeline.css": "src/less/timeline.less"
},
},
production: {
options: {
paths: ["src/css"],
cleancss: true
},
files: {
"d3-timeline.css": "src/less/timeline.less"
},
},
},
concat: {
release: {
src: ["LICENSE", "src/js/start.js", "build-tmp/timeline.js", "build-tmp/data.js", "build-tmp/panel.js", "src/js/end.js"],
dest: "d3-timeline.js",
nonull: true,
},
},
uglify: {
options: {
report: "min",
},
release: {
files: {
"d3-timeline.min.js": ["d3-timeline.js"],
},
},
},
clean: {
build: {
src: "build-tmp/",
},
},
});
// Load indent task
grunt.loadNpmTasks('grunt-indent');
// Load concat task
grunt.loadNpmTasks("grunt-contrib-less");
// Load concat task
grunt.loadNpmTasks("grunt-contrib-concat");
// Load uglify task
grunt.loadNpmTasks('grunt-contrib-uglify');
// Load clean task
grunt.loadNpmTasks('grunt-contrib-clean');
// Default task.
grunt.registerTask("default", ["indent", "less:development", "concat", "uglify", "clean"]);
};