From: Dan Vanderkam <danvdk@gmail.com>
Date: Mon, 26 Oct 2015 17:47:08 +0000 (-0400)
Subject: Track gzipped code size, too
X-Git-Tag: v2.0.0~35^2
X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=refs%2Fheads%2Fgzip-size;p=dygraphs.git

Track gzipped code size, too
---

diff --git a/.travis.yml b/.travis.yml
index cbda81c..198ce97 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,5 +9,4 @@ script: >
     npm run test &&
     npm run coverage &&
     ./scripts/post-coverage.sh &&
-    curl -O https://raw.githubusercontent.com/danvk/travis-weigh-in/master/weigh_in.py &&
-    python weigh_in.py dist/dygraph-combined.js
+    ./scripts/weigh-in.sh
diff --git a/scripts/weigh-in.sh b/scripts/weigh-in.sh
new file mode 100755
index 0000000..e58f786
--- /dev/null
+++ b/scripts/weigh-in.sh
@@ -0,0 +1,9 @@
+#!/bin/bash
+# This tracks the effect of pull requests on the size of dygraphs.
+# See https://github.com/danvk/travis-weigh-in
+set -o errexit
+
+curl -O https://raw.githubusercontent.com/danvk/travis-weigh-in/master/weigh_in.py
+python weigh_in.py dist/dygraph-combined.js
+gzip -c dist/dygraph.min.js > dist/dygraph.min.js.gz
+python weigh_in.py dist/dygraph.min.js.gz