X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=generate-combined.sh;h=a224156367954af31915f53f28037b8a00060320;hb=33b5c4b245bf29f3e908931bf70dde00b5fc8a51;hp=0f3064a4c125850df4f7e97577d8704adec1a816;hpb=48e614acf3084b9836803f8b014bf0e65f1ca119;p=dygraphs.git diff --git a/generate-combined.sh b/generate-combined.sh index 0f3064a..a224156 100755 --- a/generate-combined.sh +++ b/generate-combined.sh @@ -1,28 +1,74 @@ #!/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 \ + polyfills/console.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 \ + datahandler/datahandler.js \ + datahandler/default.js \ + datahandler/default-fractions.js \ + datahandler/bars.js \ + datahandler/bars-custom.js \ + datahandler/bars-error.js \ + datahandler/bars-fractions.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-tickers.js \ -rgbcolor/rgbcolor.js \ -strftime/strftime-min.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 +} -java -jar yuicompressor-2.4.2.jar /tmp/dygraph.js \ -> /tmp/dygraph-packed.js +Copyright () { + echo '/*! @license Copyright 2014 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 () { + node_modules/uglify-js/bin/uglifyjs \ + $(GetSources | xargs) \ + --compress warnings=false \ + --mangle \ + --define DEBUG=false \ + --preamble "$(Copyright)" \ + $* +} -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 --source-map dygraph-combined.js.map \ + > dygraph-combined.js + chmod a+r dygraph-combined.js dygraph-combined.js.map + ;; +*) + echo >&2 "Unknown action '$ACTION'" + exit 1 + ;; +esac