Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow Terminus to also display emojis #7093

Merged
merged 3 commits into from Mar 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -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

Expand Down
5 changes: 4 additions & 1 deletion src/cli/index.js
Expand Up @@ -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 <cwd>', 'working directory to use', process.cwd());
Expand Down