a bit more annotations cleanup
[dygraphs.git] / generate-combined.sh
... / ...
CommitLineData
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.
8cat \
9dygraph-layout.js \
10dygraph-canvas.js \
11dygraph.js \
12dygraph-utils.js \
13dygraph-gviz.js \
14dygraph-interaction-model.js \
15dygraph-range-selector.js \
16dygraph-tickers.js \
17rgbcolor/rgbcolor.js \
18strftime/strftime-min.js \
19plugins/base.js \
20plugins/legend.js \
21plugins/chart-labels \
22plugins/annotations.js \
23plugins/install.js \
24| perl -ne 'print unless m,REMOVE_FOR_COMBINED,..m,/REMOVE_FOR_COMBINED,' \
25> /tmp/dygraph.js
26
27java -jar yuicompressor-2.4.2.jar /tmp/dygraph.js \
28> /tmp/dygraph-packed.js
29
30(
31 echo '/*! @license Copyright 2011 Dan Vanderkam (danvdk@gmail.com) MIT-licensed (http://opensource.org/licenses/MIT) */'
32 cat /tmp/dygraph-packed.js
33) > dygraph-combined.js
34chmod a+r dygraph-combined.js