Skip to content

TailwindCSS is using stderr to log the messages "Rebuilding..." and "Done in [x]ms" #13656

Closed
@gc-victor

Description

@gc-victor

What version of Tailwind CSS are you using?

3.4.3 & next

Describe your issue

I'm working on a library that executes commands, prints errors on red when there is a stderr, and omits the stdout in case is not used the flag --verbose. TailwindCSS is using stderr to log the messages "Rebuilding..." and "Done in [x]ms", so it is causing a miss communication.

In the version 3.4.3:

Looks like this line is the Rebuilding...:

console.error('Rebuilding...')

Looks like this line is the Done in:

console.error('Done in', (end - start) / BigInt(1e6) + 'ms.')

In both cases there is a previous console.error() too.

In the next version:

Case 1:

eprintln(`Done in ${formatDuration(end - start)}`)

Case 2:

eprintln(`Done in ${formatDuration(end - start)}`)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions