Prepend license to dygraph.min.js
[dygraphs.git] / scripts / build.sh
index d9ea2e2..9374a9c 100755 (executable)
@@ -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 \