diff --git a/bundler/browserify.js b/bundler/browserify.js index 7a2ccef..1445c54 100644 --- a/bundler/browserify.js +++ b/bundler/browserify.js @@ -42,7 +42,9 @@ module.exports = function (env, options, cb) { if (options.fullPaths) { argv.push('--full-paths'); } - + if (options.ignoreMissing) { + argv.push('--ignore-missing'); + } if (options.standalone) { argv.push('--standalone'); argv.push(module);