X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=generate-combined.sh;h=9e184ae5833a3434cb3977f48806de82579ec716;hb=b99970f8bc1a0cbec2c00f4eeafc8d97f0883edb;hp=d38d2207cd743352903367e799caa4635198a372;hpb=e2c21500ff552f97a80ed02e027df86aecac3c75;p=dygraphs.git diff --git a/generate-combined.sh b/generate-combined.sh index d38d220..9e184ae 100755 --- a/generate-combined.sh +++ b/generate-combined.sh @@ -1,32 +1,65 @@ #!/bin/bash # Generates a single JS file that's easier to include. -# Pack all the JS together. +GetSources () { + # This list needs to be kept in sync w/ the one in dygraph-dev.js + # and the one in jsTestDriver.conf. Order matters, except for the plugins. + for F in \ + strftime/strftime-min.js \ + rgbcolor/rgbcolor.js \ + stacktrace.js \ + dashed-canvas.js \ + dygraph-options.js \ + dygraph-layout.js \ + dygraph-canvas.js \ + dygraph.js \ + dygraph-utils.js \ + dygraph-gviz.js \ + dygraph-interaction-model.js \ + dygraph-tickers.js \ + dygraph-plugin-base.js \ + plugins/*.js \ + dygraph-plugin-install.js + do + echo "$F" + done +} -# This list needs to be kept in sync w/ the one in dygraph-dev.js -# and the one in jsTestDriver.conf. -cat \ -dygraph-layout.js \ -dygraph-canvas.js \ -dygraph.js \ -dygraph-utils.js \ -dygraph-gviz.js \ -dygraph-interaction-model.js \ -dygraph-range-selector.js \ -dygraph-tickers.js \ -rgbcolor/rgbcolor.js \ -strftime/strftime-min.js \ -plugins/base.js \ -plugins/legend.js \ -plugins/install.js \ -| perl -ne 'print unless m,REMOVE_FOR_COMBINED,..m,/REMOVE_FOR_COMBINED,' \ -> /tmp/dygraph.js +# Pack all the JS together. +CatSources () { + GetSources \ + | xargs cat \ + | perl -ne 'print unless m,REMOVE_FOR_COMBINED,..m,/REMOVE_FOR_COMBINED,' +} -java -jar yuicompressor-2.4.2.jar /tmp/dygraph.js \ -> /tmp/dygraph-packed.js +Copyright () { + echo '/*! @license Copyright 2011 Dan Vanderkam (danvdk@gmail.com) MIT-licensed (http://opensource.org/licenses/MIT) */' +} -# TODO(danvk): ensure the dygraphs copyright, etc. gets into the packed js. +CatCompressed () { + Copyright + CatSources \ + | java -jar yuicompressor-2.4.2.jar --type js +} -cat \ -/tmp/dygraph-packed.js \ -> dygraph-combined.js +ACTION="${1:-update}" +case "$ACTION" in +ls) + GetSources + ;; +cat) + Copyright + CatSources + ;; +compress*|cat_compress*) + CatCompressed + ;; +update) + CatCompressed > dygraph-combined.js + chmod a+r dygraph-combined.js + ;; +*) + echo >&2 "Unknown action '$ACTION'" + exit 1 + ;; +esac