From 6e35425afe78fb0b61c8314e5aa3329852122839 Mon Sep 17 00:00:00 2001 From: guybedford Date: Sun, 23 Aug 2015 17:57:23 +0200 Subject: [PATCH] disable depCache and bundles for builds --- lib/bundle.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/bundle.js b/lib/bundle.js index fddb03b54..60646c961 100644 --- a/lib/bundle.js +++ b/lib/bundle.js @@ -32,6 +32,11 @@ function Builder(_config) { if (_config) extend(cfg, _config); + if (cfg.depCache) + delete cfg.depCache; + if (cfg.bundles) + delete cfg.bundles; + SystemJSBuilder.call(this, cfg); } Builder.prototype = Object.create(SystemJSBuilder.prototype);