Commit | Line | Data |
---|---|---|
6a1aa64f DV |
1 | #!/bin/bash |
2 | # Generates a single JS file that's easier to include. | |
43f15770 | 3 | |
74a5af31 DV |
4 | # Pack all the JS together. |
5 | ||
6 | # This list needs to be kept in sync w/ the one in dygraph-dev.js | |
8d3d15af | 7 | # and the one in jsTestDriver.conf. |
6a1aa64f | 8 | cat \ |
74a5af31 | 9 | dygraph-layout.js \ |
6a1aa64f DV |
10 | dygraph-canvas.js \ |
11 | dygraph.js \ | |
dedb4f5f | 12 | dygraph-utils.js \ |
74a5af31 | 13 | dygraph-gviz.js \ |
846f3d2d | 14 | dygraph-interaction-model.js \ |
f474c2a3 | 15 | rgbcolor/rgbcolor.js \ |
f18986e5 | 16 | strftime/strftime-min.js \ |
b4bd8805 | 17 | | perl -ne 'print unless m,REMOVE_FOR_COMBINED,..m,/REMOVE_FOR_COMBINED,' \ |
b2a516b8 DV |
18 | > /tmp/dygraph.js |
19 | ||
f18986e5 | 20 | java -jar yuicompressor-2.4.2.jar /tmp/dygraph.js \ |
b2a516b8 DV |
21 | > /tmp/dygraph-packed.js |
22 | ||
5709f0d5 DV |
23 | # TODO(danvk): ensure the dygraphs copyright, etc. gets into the packed js. |
24 | ||
b2a516b8 | 25 | cat \ |
b2a516b8 | 26 | /tmp/dygraph-packed.js \ |
6a1aa64f | 27 | > dygraph-combined.js |