Skip to content

Commit

Permalink
refactor: remove parenthesis around ready time
Browse files Browse the repository at this point in the history
  • Loading branch information
innocenzi committed May 19, 2022
1 parent 87c0faa commit b7f3360
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vite/src/node/cli.ts
Expand Up @@ -102,9 +102,9 @@ cli
const viteStartTime = global.__vite_start_time ?? false
const startupDurationString = viteStartTime
? colors.dim(
`(ready in ${colors.white(
`ready in ${colors.white(
colors.bold(Math.ceil(performance.now() - viteStartTime))
)} ms)`
)} ms`
)
: ''

Expand Down

0 comments on commit b7f3360

Please sign in to comment.