comments & cleanup
authorDan Vanderkam <danvdk@gmail.com>
Wed, 23 Oct 2013 18:09:15 +0000 (13:09 -0500)
committerDan Vanderkam <danvdk@gmail.com>
Wed, 23 Oct 2013 18:09:15 +0000 (13:09 -0500)
compile-with-closure.sh
dygraph-exports.js
dygraph-internal.externs.js

index d39e5d0..50a93f2 100755 (executable)
@@ -1,6 +1,13 @@
 #!/bin/bash
+
+# This script runs dygraphs through the Closure Compiler. This checks for
+# errors (both in the JS and in the jsdoc) and flags type errors as WARNINGS.
+
+# It outputs minified JS to a temp file. This should be ignored for now, until
+# it's fully functional.
+
 java -jar ../../closure-compiler-read-only/build/compiler.jar  \
- --compilation_level SIMPLE_OPTIMIZATIONS  \
+ --compilation_level ADVANCED_OPTIMIZATIONS  \
  --warning_level VERBOSE  \
  --output_wrapper='(function() {%output%})();'  \
  --js ../../closure-library-read-only/closure/goog/base.js \
@@ -33,5 +40,3 @@ java -jar ../../closure-compiler-read-only/build/compiler.jar  \
  --externs dygraph-internal.externs.js  \
  --externs gviz-api.js  \
  --js_output_file=/tmp/out.js
-
-# --js=dygraph-constants.js \
index 7c0b2c6..8cee86d 100644 (file)
@@ -1,3 +1,7 @@
+// This is the complete set of symbols that dygraphs exports for use by
+// clients. Exporting a symbols forces the Closure Compiler to preserve it in
+// the minified JS (symbols not in this list are mangled).
+
 goog.exportSymbol('Dygraph', Dygraph);
 
 goog.exportSymbol('Dygraph.prototype.adjustRoll', Dygraph.prototype.adjustRoll);
index 90d0d6d..92e5cc3 100644 (file)
@@ -1,3 +1,7 @@
+// This file:
+// - declares symbols that are provided outisde of dygraphs (e.g. by excanvas)
+// - defines custom types used internally
+
 /**
  * @param {Object} dict
  * @return {!Array.<string>}