2017-12-12 09:42:29 +00:00
|
|
|
module.exports = class WarnFixPlugin {
|
2017-12-08 09:04:08 +00:00
|
|
|
apply(compiler) /* istanbul ignore next */ {
|
2018-02-26 10:44:24 +00:00
|
|
|
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
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|