Skip to content

Commit

Permalink
disable depCache and bundles for builds
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed Aug 23, 2015
1 parent fd4eff1 commit 6e35425
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 6e35425

Please sign in to comment.