Merge pull request #683 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) 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 return this
}) })