Skip to content

Commit

Permalink
🇺🇸
Browse files Browse the repository at this point in the history
  • Loading branch information
Conduitry committed Jul 6, 2018
1 parent a043c44 commit 2edc56b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli/error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ export default function error(err) {
stderr(`${clorox.red(err.message || err)}`);

if (err.frame) {
stderr(err.frame); // eslint-disable-line no-console
stderr(err.frame);
} else if (err.stack) {
stderr(`${clorox.grey(err.stack)}`);
stderr(`${clorox.gray(err.stack)}`);
}

process.exit(1);
Expand Down

1 comment on commit 2edc56b

@stalkerg
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think will be better with the link to the standard instead of just US/UK:
https://www.w3schools.com/colors/colors_x11.asp

Please sign in to comment.