synched generate-combined.sh to dygraphs-dev.js
[dygraphs.git] / generate-combined.sh
1 #!/bin/bash
2 # Generates a single JS file that's easier to include.
3
4 # Pack all the JS together.
5
6 # This list needs to be kept in sync w/ the one in dygraph-dev.js
7 # and the one in jsTestDriver.conf.
8 cat \
9 strftime/strftime-min.js \
10 rgbcolor/rgbcolor.js \
11 stacktrace.js \
12 dashed-canvas.js \
13 dygraph-options.js \
14 dygraph-layout.js \
15 dygraph-canvas.js \
16 dygraph.js \
17 dygraph-utils.js \
18 dygraph-gviz.js \
19 dygraph-interaction-model.js \
20 dygraph-range-selector.js \
21 dygraph-tickers.js \
22 plugins/base.js \
23 plugins/annotations.js \
24 plugins/axes.js \
25 plugins/chart-labels.js \
26 plugins/grid.js \
27 plugins/legend.js \
28 plugins/install.js \
29 | perl -ne 'print unless m,REMOVE_FOR_COMBINED,..m,/REMOVE_FOR_COMBINED,' \
30 > /tmp/dygraph.js
31
32 java -jar yuicompressor-2.4.2.jar /tmp/dygraph.js \
33 > /tmp/dygraph-packed.js
34
35 (
36 echo '/*! @license Copyright 2011 Dan Vanderkam (danvdk@gmail.com) MIT-licensed (http://opensource.org/licenses/MIT) */'
37 cat /tmp/dygraph-packed.js
38 ) > dygraph-combined.js
39 chmod a+r dygraph-combined.js