X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=generate-combined.sh;h=a224156367954af31915f53f28037b8a00060320;hb=88a17b3f3b73348cfe2d986b01751814f7c8724b;hp=7cdc22aebf13aa017eb4c2d9280962fbfa6fe4c2;hpb=170b65472cb7a04501183383ad0eb35439af5595;p=dygraphs.git diff --git a/generate-combined.sh b/generate-combined.sh index 7cdc22a..a224156 100755 --- a/generate-combined.sh +++ b/generate-combined.sh @@ -5,6 +5,7 @@ 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 \ @@ -32,8 +33,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 () { @@ -41,10 +41,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}" @@ -60,8 +63,9 @@ 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'"