forked from TBEDP/datavjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
89 lines (79 loc) · 1.89 KB
/
config.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
exports.deps = [
'deps/array_shim.js',
'deps/json2.js',
'deps/d3.v2.js',
'deps/raphael.js',
'deps/eventproxy-0.2.0.js',
'deps/jquery-1.7.1.js',
'deps/underscore-1.4.4.js'
];
exports.datav = exports.deps.concat([
'lib/datav.js'
]);
exports.without = function (excludes) {
return exports.datav.filter(function (filename) {
return excludes.indexOf(filename) === -1;
});
};
exports.datav_without_jquery_json = exports.without([
'deps/jquery-1.7.1.js',
'deps/json2.js'
]);
exports.datav_without_jquery = exports.without([
'deps/jquery-1.7.1.js'
]);
exports.data_html5 = exports.without([
'deps/array_shim.js',
'deps/json2.js'
]);
exports.data_shu = exports.without([
'deps/raphael.js',
'deps/eventproxy-0.2.0.js',
'deps/jquery-1.7.1.js',
'deps/underscore-1.4.4.js'
]);
exports.data_mofang = exports.without([
'deps/raphael.js',
'deps/underscore-1.4.4.js',
'deps/jquery-1.7.1.js'
]);
exports.v5 = exports.without([
'deps/array_shim.js',
'deps/json2.js',
'deps/eventproxy-0.2.0.js',
'deps/jquery-1.7.1.js',
'deps/underscore-1.4.4.js'
]);
exports.all = exports.datav.concat([
'lib/charts/axis.js',
'lib/charts/brush.js',
'lib/charts/bubble.js',
'lib/charts/bullet.js',
'lib/charts/bundle.js',
'lib/charts/chord.js',
'lib/charts/diff.js',
'lib/charts/flow.js',
'lib/charts/force.js',
'lib/charts/column.js',
'lib/charts/matrix.js',
'lib/charts/parallel.js',
'lib/charts/pie.js',
'lib/charts/scatterplotMatrix.js',
'lib/charts/stream.js',
'lib/charts/tree.js',
'lib/charts/treemap.js',
'lib/charts/chinamap.js'
]);
exports.stream_component = [
'lib/charts/axis.js',
'lib/charts/stream_axis.js',
'lib/charts/legend.js',
'lib/charts/navi.js',
'lib/charts/tip.js',
'lib/charts/percentage.js',
'lib/charts/hover_line.js',
'lib/charts/path_label.js',
'lib/charts/cover.js',
'lib/charts/stream.js',
'lib/components/stream.js'
];