Browse Source

Add missing parameter.

semi-dynamic-namespace-imports
operandom 9 years ago
parent
commit
3b12752297
  1. 2
      bin/src/runRollup.js

2
bin/src/runRollup.js

@ -99,7 +99,7 @@ function execute ( options, command ) {
typeof options.external === 'function' ?
((fn, a) => {
return function (id) {
return fn() || a.indexOf(id) !== -1;
return fn(id) || a.indexOf(id) !== -1;
};
})(options.external, command.external.split(',')) :
(options.external || []).concat(command.external.split(',')) :

Loading…
Cancel
Save