This commit is contained in:
Pooya Parsa 2017-12-08 12:34:08 +03:30
parent cac06d7067
commit 65f2419052
2 changed files with 4 additions and 2 deletions

View File

@ -1,8 +1,7 @@
export default class WarnFixPlugin {
apply(compiler) {
apply(compiler) /* istanbul ignore next */ {
compiler.plugin('done', stats => {
stats.compilation.warnings = stats.compilation.warnings.filter(warn => {
/* istanbul ignore next */
if (warn.name === 'ModuleDependencyWarning' &&
warn.message.includes(`export 'default'`) &&
warn.message.indexOf('nuxt_plugin_') === 0) {

View File

@ -126,6 +126,7 @@ export default class Renderer {
get isResourcesAvailable() {
// Required for both
/* istanbul ignore if */
if (!this.resources.clientManifest) {
return false
}
@ -417,9 +418,11 @@ export default class Renderer {
if (line) {
frame.lineNumber = line
}
/* istanbul ignore if */
if (column) {
frame.columnNumber = column
}
/* istanbul ignore if */
if (name) {
frame.functionName = name
}