Introduction
I wanted to remove the "✨ Done in X.XXs." message in Yarn. In the package.json, I defined the following:
{
"scripts": {
"echo": "echo aaa"
}
}
When executed, it displays the "✨ Done in X.XXs." message.
$ yarn run echo
yarn run v1.22.10
$ echo aaa
aaa
✨ Done in 0.04s.
--silent Option
By adding the --silent option, it disappeared.
$ yarn run --silent echo
aaa
Top comments (0)