Fix cli log next.js color (#56448)

The color of "Next.js <version>" in CLI was changed to `magenta` accidentally in #55992 , this PR added the original color back
This commit is contained in:
Jiachi Liu 2023-10-04 23:41:49 +02:00 committed by GitHub
parent ae1b89984d
commit ad42b610c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 6 deletions

View file

@ -65,6 +65,9 @@ export const green = enabled ? formatter('\x1b[32m', '\x1b[39m') : String
export const yellow = enabled ? formatter('\x1b[33m', '\x1b[39m') : String
export const blue = enabled ? formatter('\x1b[34m', '\x1b[39m') : String
export const magenta = enabled ? formatter('\x1b[35m', '\x1b[39m') : String
export const purple = enabled
? formatter('\x1b[38;2;173;127;168m', '\x1b[39m')
: String
export const cyan = enabled ? formatter('\x1b[36m', '\x1b[39m') : String
export const white = enabled ? formatter('\x1b[37m', '\x1b[39m') : String
export const gray = enabled ? formatter('\x1b[90m', '\x1b[39m') : String

View file

@ -18,7 +18,7 @@ import { formatHostname } from './format-hostname'
import { initialize } from './router-server'
import { checkIsNodeDebugging } from './is-node-debugging'
import { CONFIG_FILES } from '../../shared/lib/constants'
import { bold, magenta } from '../../lib/picocolors'
import { bold, purple } from '../../lib/picocolors'
const debug = setupDebug('next:start-server')
@ -92,11 +92,7 @@ function logStartInfo({
formatDurationText: string
}) {
Log.bootstrap(
bold(
magenta(
`${`${Log.prefixes.ready} Next.js`} ${process.env.__NEXT_VERSION}`
)
)
bold(purple(`${Log.prefixes.ready} Next.js ${process.env.__NEXT_VERSION}`))
)
Log.bootstrap(`- Local: ${appUrl}`)
if (hostname) {