diff --git a/CHANGELOG.md b/CHANGELOG.md index c0355a7b51..32cbae11b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -85,6 +85,10 @@ The 1.15.1 doesn't exist due to a release hiccup. - 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 60cd2c2597..bcc70f15c7 100644 --- a/src/cli/index.js +++ b/src/cli/index.js @@ -105,7 +105,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());