Nuxt/lib/builder/webpack/plugins/warnfix.js

15 lines
440 B
JavaScript
Raw Normal View History

module.exports = class WarnFixPlugin {
2017-12-08 09:04:08 +00:00
apply(compiler) /* istanbul ignore next */ {
2017-12-08 08:42:18 +00:00
compiler.plugin('done', stats => {
stats.compilation.warnings = stats.compilation.warnings.filter(warn => {
if (warn.name === 'ModuleDependencyWarning' &&
warn.message.includes(`export 'default'`) &&
2017-12-08 09:24:16 +00:00
warn.message.includes('nuxt_plugin_')) {
2017-12-08 08:42:18 +00:00
return false
}
return true
})
})
}
}