Commit | Line | Data |
---|---|---|
6a1aa64f DV |
1 | #!/bin/bash |
2 | # Generates a single JS file that's easier to include. | |
3 | # This packed JS includes a partial copy of MochiKit and PlotKit. | |
43f15770 DV |
4 | |
5 | # Generate the packed version of the subset of PlotKit needed by dygraphs. | |
6 | # This saves ~30k | |
7 | cd plotkit_v091 | |
8 | ./scripts/pack.py Base Layout Canvas > /tmp/plotkit-packed.js | |
9 | cd .. | |
10 | ||
6a1aa64f DV |
11 | cat \ |
12 | mochikit_v14/packed/MochiKit/MochiKit.js \ | |
43f15770 | 13 | /tmp/plotkit-packed.js \ |
6a1aa64f DV |
14 | dygraph-canvas.js \ |
15 | dygraph.js \ | |
16 | > dygraph-combined.js |