mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
9b8cbed512
Using native node 8.x for less transpilations
15 lines
440 B
JavaScript
15 lines
440 B
JavaScript
module.exports = class WarnFixPlugin {
|
|
apply(compiler) /* istanbul ignore next */ {
|
|
compiler.plugin('done', stats => {
|
|
stats.compilation.warnings = stats.compilation.warnings.filter(warn => {
|
|
if (warn.name === 'ModuleDependencyWarning' &&
|
|
warn.message.includes(`export 'default'`) &&
|
|
warn.message.includes('nuxt_plugin_')) {
|
|
return false
|
|
}
|
|
return true
|
|
})
|
|
})
|
|
}
|
|
}
|