From ccaeb43ff35ed617489339b1b70788ee30a5a3fc Mon Sep 17 00:00:00 2001
From: Mark Haines <mjark@negativecurvature.net>
Date: Thu, 23 Jul 2015 10:28:52 +0100
Subject: [PATCH] Ignore olm when building vector

---
 examples/vector/package.json | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/vector/package.json b/examples/vector/package.json
index a9405e4a..8357126f 100644
--- a/examples/vector/package.json
+++ b/examples/vector/package.json
@@ -19,7 +19,7 @@
     "watchify": "^3.2.1"
   },
   "scripts": {
-    "build": "browserify -t [ envify --NODE_ENV production ] -t reactify index.js | uglifyjs -c -m -o bundle.js",
-    "start": "parallelshell \"watchify -v -d -t reactify index.js -o bundle.js\" \"http-server\""
+    "build": "browserify --ignore olm -t [ envify --NODE_ENV production ] -t reactify index.js | uglifyjs -c -m -o bundle.js",
+    "start": "parallelshell \"watchify --ignore olm -v -d -t reactify index.js -o bundle.js\" \"http-server\""
   }
 }