From 93a2a0f14a556a97549be1c6c75c0925407dad6c Mon Sep 17 00:00:00 2001 From: Steven Hunt Date: Fri, 10 Apr 2020 12:04:28 -0400 Subject: [PATCH] Add support for ignoreMissing option --- bundler/browserify.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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);