X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=generate-combined.sh;h=26d4a422e00d1effa640270faf1ab0697c64a5f7;hb=bfb3e0a44ba7eb76704389cd1515db9995944d41;hp=a224156367954af31915f53f28037b8a00060320;hpb=103fd879738e386ff2f65401700b7bcdb4b317a6;p=dygraphs.git diff --git a/generate-combined.sh b/generate-combined.sh index a224156..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 \ @@ -59,6 +67,11 @@ cat) Copyright CatSources ;; +cat-dev) + DEBUG=true + Copyright + CatSources + ;; compress*|cat_compress*) CatCompressed ;;