Skip to content

Commit

Permalink
feat(plug-in): omit karma-bro's options and pass others to browserify
Browse files Browse the repository at this point in the history
  • Loading branch information
bendrucker committed Oct 18, 2014
1 parent 51b2328 commit 0211640
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/bro.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ function Bro(bundleFile) {

var bopts = config.browserify || {};

var browserifyOptions = _.extend({}, watchify.args, _.pick(bopts, [
'extensions', 'builtins', 'basedir', 'commondir', 'debug'
var browserifyOptions = _.extend({}, watchify.args, _.omit(bopts, [
'transform', 'plugin', 'prebundle'
]));

var w = watchify(browserify(browserifyOptions));
Expand Down

0 comments on commit 0211640

Please sign in to comment.