From: Dan Vanderkam Date: Sun, 25 Oct 2015 02:38:39 +0000 (-0400) Subject: Prepend license to dygraph.min.js X-Git-Tag: v2.0.0~38^2 X-Git-Url: https://adrianiainlam.tk/git/?p=dygraphs.git;a=commitdiff_plain;h=ca8c85838e6a98c17d7f62bb4e3f43e9244b1385 Prepend license to dygraph.min.js --- diff --git a/.gitignore b/.gitignore index b904bed..121cd66 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ node_modules env dist coverage +*.log diff --git a/scripts/build.sh b/scripts/build.sh index d9ea2e2..9374a9c 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -34,8 +34,11 @@ browserify \ # Create dist/dygraph.tmp.js.map cat dist/dygraph.tmp.js | exorcist --base . dist/dygraph.tmp.js.map > /dev/null +header='/*! @license Copyright 2014 Dan Vanderkam (danvdk@gmail.com) MIT-licensed (http://opensource.org/licenses/MIT) */' + # Create dist/dygraph.js.min{,.map} uglifyjs --compress --mangle \ + --preamble "$header" \ --in-source-map dist/dygraph.tmp.js.map \ --source-map-include-sources \ --source-map dist/dygraph.min.js.map \