Merge branch 'master' of https://github.com/danvk/dygraphs
[dygraphs.git] / file-size-stats.sh
CommitLineData
3641418e
DV
1#!/bin/bash
2
3# Reports compressed file sizes for each JS file in dygraphs.
4
5# This list needs to be kept in sync w/ the one in dygraph-dev.js
6# and the one in jsTestDriver.conf.
7for file in \
8dygraph-layout.js \
9dygraph-canvas.js \
10dygraph.js \
11dygraph-utils.js \
12dygraph-gviz.js \
13dygraph-interaction-model.js \
3641418e
DV
14dygraph-tickers.js \
15rgbcolor/rgbcolor.js \
16strftime/strftime-min.js \
17dashed-canvas.js \
1beeb310 18dygraph-plugin-base.js \
3641418e
DV
19plugins/annotations.js \
20plugins/axes.js \
ec475f44 21plugins/range-selector.js \
3641418e
DV
22plugins/chart-labels.js \
23plugins/grid.js \
24plugins/legend.js \
1beeb310 25dygraph-plugin-install.js \
3641418e
DV
26; do
27 base_size=$(cat $file | wc -c)
28 cat $file \
29 | perl -ne 'print unless m,REMOVE_FOR_COMBINED,..m,/REMOVE_FOR_COMBINED,' \
30 > /tmp/dygraph.js
31 min_size=$(java -jar yuicompressor-2.4.2.jar /tmp/dygraph.js | gzip -c | wc -c)
32
33 echo "$min_size ($base_size) $file"
34done