1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-02-20 23:49:38 +00:00

Merge pull request from jroxendal/fix-generate

Fixed refractoring error in generate
This commit is contained in:
Sébastien Chopin 2017-05-08 23:16:55 +02:00 committed by GitHub
commit 8865cdc1d8

View File

@ -143,7 +143,7 @@ export default function () {
return `Route: '${route}' thrown an error: \n` + JSON.stringify(error)
}
})
console.error('==== Error report ==== \n' + report).join('\n\n') // eslint-disable-line no-console
console.error('==== Error report ==== \n' + report.join('\n\n')) // eslint-disable-line no-console
}
return this
})