X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=generate-combined.sh;h=26d4a422e00d1effa640270faf1ab0697c64a5f7;hb=d0da31d021ee7a89b378182a60bf28f0873fc87b;hp=30c0a7e3445db88808bea7b94267846c76112e93;hpb=3e644ed896f7184c93bc7d16f285a33a4c2e39f2;p=dygraphs.git diff --git a/generate-combined.sh b/generate-combined.sh index 30c0a7e..26d4a42 100755 --- a/generate-combined.sh +++ b/generate-combined.sh @@ -2,6 +2,13 @@ # Generates a single JS file that's easier to include. GetSources () { + # Include dyraph-options-reference only if DEBUG environment variable is set. + if [ ! -z "$DEBUG" ]; then + maybe_options_reference=dygraph-options-reference.js + else + maybe_options_reference='' + fi + # 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 \ @@ -18,6 +25,7 @@ GetSources () { dygraph-plugin-base.js \ plugins/*.js \ dygraph-plugin-install.js \ + $maybe_options_reference \ datahandler/datahandler.js \ datahandler/default.js \ datahandler/default-fractions.js \ @@ -33,8 +41,7 @@ GetSources () { # Pack all the JS together. CatSources () { GetSources \ - | xargs cat \ - | perl -ne 'print unless m,REMOVE_FOR_COMBINED,..m,/REMOVE_FOR_COMBINED,' + | xargs cat } Copyright () { @@ -42,10 +49,13 @@ Copyright () { } CatCompressed () { - Copyright - CatSources \ - | grep -v '"use strict";' \ - | node_modules/uglify-js/bin/uglifyjs -c warnings=false -m + node_modules/uglify-js/bin/uglifyjs \ + $(GetSources | xargs) \ + --compress warnings=false \ + --mangle \ + --define DEBUG=false \ + --preamble "$(Copyright)" \ + $* } ACTION="${1:-update}" @@ -57,12 +67,18 @@ cat) Copyright CatSources ;; +cat-dev) + DEBUG=true + Copyright + CatSources + ;; compress*|cat_compress*) CatCompressed ;; update) - CatCompressed > dygraph-combined.js - chmod a+r dygraph-combined.js + 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'"