mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 00:23:53 +00:00
chore: ignore eslint warnings about console logging (#28795)
This commit is contained in:
parent
5d4d6013af
commit
41236589cc
@ -104,6 +104,7 @@ async function initNuxt (nuxt: Nuxt) {
|
||||
|
||||
const shouldShowPrompt = nuxt.options.dev && hasTTY && !isCI
|
||||
if (!shouldShowPrompt) {
|
||||
// eslint-disable-next-line no-console
|
||||
console.log(`Using \`${fallbackCompatibilityDate}\` as fallback compatibility date.`)
|
||||
}
|
||||
|
||||
@ -113,6 +114,7 @@ async function initNuxt (nuxt: Nuxt) {
|
||||
default: true,
|
||||
})
|
||||
if (result !== true) {
|
||||
// eslint-disable-next-line no-console
|
||||
console.log(`Using \`${fallbackCompatibilityDate}\` as fallback compatibility date.`)
|
||||
return
|
||||
}
|
||||
@ -147,6 +149,7 @@ async function initNuxt (nuxt: Nuxt) {
|
||||
consola.error(`Failed to update config: ${message}`)
|
||||
}
|
||||
|
||||
// eslint-disable-next-line no-console
|
||||
console.log(`Using \`${fallbackCompatibilityDate}\` as fallback compatibility date.`)
|
||||
}
|
||||
|
||||
@ -156,6 +159,7 @@ async function initNuxt (nuxt: Nuxt) {
|
||||
nitro.hooks.hookOnce('compiled', () => {
|
||||
warnedAboutCompatDate = true
|
||||
// Print warning
|
||||
// eslint-disable-next-line no-console
|
||||
console.info(`Nuxt now supports pinning the behavior of provider and deployment presets with a compatibility date. We recommend you specify a \`compatibilityDate\` in your \`nuxt.config\` file, or set an environment variable, such as \`COMPATIBILITY_DATE=${todaysDate}\`.`)
|
||||
if (shouldShowPrompt) { promptAndUpdate() }
|
||||
})
|
||||
@ -665,6 +669,7 @@ async function initNuxt (nuxt: Nuxt) {
|
||||
// Show compatibility version banner when Nuxt is running with a compatibility version
|
||||
// that is different from the current major version
|
||||
if (!(satisfies(nuxt._version, nuxt.options.future.compatibilityVersion + '.x'))) {
|
||||
// eslint-disable-next-line no-console
|
||||
console.info(`Running with compatibility version \`${nuxt.options.future.compatibilityVersion}\``)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user