X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=scripts%2Fbuild.sh;fp=scripts%2Fbuild.sh;h=d9ea2e2254394dff8eea7fba016132c07d684894;hb=514a10f302043e48459a79806775b6925dc9a7b5;hp=0000000000000000000000000000000000000000;hpb=4dbba4b17c6203b3c1493fd99dfcf12cb88103e7;p=dygraphs.git diff --git a/scripts/build.sh b/scripts/build.sh new file mode 100755 index 0000000..d9ea2e2 --- /dev/null +++ b/scripts/build.sh @@ -0,0 +1,53 @@ +#!/bin/bash +# This generates: +# - dist/dygraph.js +# - dist/dygraph.js.map +# - dist/dygraph.min.js +# - dist/dygraph.min.js.map +set -o errexit + +mkdir -p dist + +# Create dist/dygraph.js +browserify \ + -v \ + -t babelify \ + -t [ envify --NODE_ENV development ] \ + --debug \ + --standalone Dygraph \ + src/dygraph.js \ + > dist/dygraph.tmp.js + +# Create dist/dygraph.js.map +cat dist/dygraph.tmp.js | exorcist --base . dist/dygraph.js.map > dist/dygraph.js + +# Create "production" bundle for minification +browserify \ + -v \ + -t babelify \ + -t [ envify --NODE_ENV production ] \ + --debug \ + --standalone Dygraph \ + src/dygraph.js \ + > dist/dygraph.tmp.js + +# Create dist/dygraph.tmp.js.map +cat dist/dygraph.tmp.js | exorcist --base . dist/dygraph.tmp.js.map > /dev/null + +# Create dist/dygraph.js.min{,.map} +uglifyjs --compress --mangle \ + --in-source-map dist/dygraph.tmp.js.map \ + --source-map-include-sources \ + --source-map dist/dygraph.min.js.map \ + -o dist/dygraph.min.js \ + dist/dygraph.tmp.js + +# Copy to the old location +cp dist/dygraph.min.js dist/dygraph-combined.js + +# Build GWT JAR +jar -cf dist/dygraph-gwt.jar -C gwt org + +# Remove temp files. +rm dist/dygraph.tmp.js +rm dist/dygraph.tmp.js.map