From ec8a815688c1deb7c671047a197616dbca3c8d83 Mon Sep 17 00:00:00 2001 From: David Baker Date: Fri, 7 Aug 2015 11:51:13 +0100 Subject: [PATCH] Ignore olm. There is no olm. --- examples/trivial/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/trivial/package.json b/examples/trivial/package.json index 48e4e93b9f..40a7150731 100644 --- a/examples/trivial/package.json +++ b/examples/trivial/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'" } }