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

17 lines
476 B
JavaScript
Raw Normal View History

2018-03-16 16:12:06 +00:00
export default class WarnFixPlugin {
2017-12-08 09:04:08 +00:00
apply(compiler) /* istanbul ignore next */ {
compiler.hooks.done.tap('warnfix-plugin', stats => {
2017-12-08 08:42:18 +00:00
stats.compilation.warnings = stats.compilation.warnings.filter(warn => {
2018-01-13 05:22:11 +00:00
if (
warn.name === 'ModuleDependencyWarning' &&
2017-12-08 08:42:18 +00:00
warn.message.includes(`export 'default'`) &&
2018-01-13 05:22:11 +00:00
warn.message.includes('nuxt_plugin_')
) {
2017-12-08 08:42:18 +00:00
return false
}
return true
})
})
}
}