diff --git a/CHANGELOG.md b/CHANGELOG.md index 6842713946..fff867c374 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -51,6 +51,10 @@ Please add one entry in this file for each change in Yarn's behavior. Use the sa - Packages won't be auto-unplugged anymore if `ignore-scripts` is set in the yarnrc file [#6983](https://github.com/yarnpkg/yarn/pull/6983) - [**Micha Reiser**](https://github.com/MichaReiser) + +- Enables displaying Emojis on [Terminus](https://github.com/Eugeny/terminus) by default + + [#7093](https://github.com/yarnpkg/yarn/pull/7093) - [**David Refoua**](https://github.com/DRSDavidSoft) ## 1.14.0 diff --git a/src/cli/index.js b/src/cli/index.js index d0c58f1c6b..40f6010c87 100644 --- a/src/cli/index.js +++ b/src/cli/index.js @@ -104,7 +104,10 @@ export async function main({ '--emoji [bool]', 'enable emoji in output', boolify, - process.platform === 'darwin' || process.env.TERM_PROGRAM === 'Hyper' || process.env.TERM_PROGRAM === 'HyperTerm', + process.platform === 'darwin' || + process.env.TERM_PROGRAM === 'Hyper' || + process.env.TERM_PROGRAM === 'HyperTerm' || + process.env.TERM_PROGRAM === 'Terminus', ); commander.option('-s, --silent', 'skip Yarn console logs, other types of logs (script output) will be printed'); commander.option('--cwd ', 'working directory to use', process.cwd());