mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
feat(nuxi): wrap and normalize all console outputs (#8846)
This commit is contained in:
parent
4bbd2618ce
commit
1496d3a07d
@ -1,6 +1,6 @@
|
|||||||
import mri from 'mri'
|
import mri from 'mri'
|
||||||
import { red } from 'colorette'
|
import { red } from 'colorette'
|
||||||
import consola from 'consola'
|
import consola, { ConsolaReporter } from 'consola'
|
||||||
import { checkEngines } from './utils/engines'
|
import { checkEngines } from './utils/engines'
|
||||||
import { commands, Command, NuxtCommand } from './commands'
|
import { commands, Command, NuxtCommand } from './commands'
|
||||||
import { showHelp } from './utils/help'
|
import { showHelp } from './utils/help'
|
||||||
@ -39,7 +39,29 @@ async function _main () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Wrap all console logs with consola for better DX
|
// Wrap all console logs with consola for better DX
|
||||||
consola.wrapConsole()
|
consola.wrapAll()
|
||||||
|
|
||||||
|
// Filter out unwanted logs
|
||||||
|
// TODO: Use better API from consola for intercepting logs
|
||||||
|
const wrapReporter = (reporter: ConsolaReporter) => <ConsolaReporter> {
|
||||||
|
log (logObj, ctx) {
|
||||||
|
if (!logObj.args || !logObj.args.length) { return }
|
||||||
|
const msg = logObj.args[0]
|
||||||
|
if (typeof msg === 'string' && !process.env.DEBUG) {
|
||||||
|
// Hide vue-router 404 warnings
|
||||||
|
if (msg.startsWith('[Vue Router warn]: No match found for location with path')) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// Hide sourcemap warnings related to node_modules
|
||||||
|
if (msg.startsWith('Sourcemap') && msg.includes('node_modules')) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return reporter.log(logObj, ctx)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// @ts-expect-error
|
||||||
|
consola._reporters = consola._reporters.map(wrapReporter)
|
||||||
|
|
||||||
process.on('unhandledRejection', err => consola.error('[unhandledRejection]', err))
|
process.on('unhandledRejection', err => consola.error('[unhandledRejection]', err))
|
||||||
process.on('uncaughtException', err => consola.error('[uncaughtException]', err))
|
process.on('uncaughtException', err => consola.error('[uncaughtException]', err))
|
||||||
|
Loading…
Reference in New Issue
Block a user