Skip to content

Commit

Permalink
feat: adjusting message colors for accessibility
Browse files Browse the repository at this point in the history
  • Loading branch information
SF-CLI-BOT authored and mattgraham committed Apr 14, 2022
1 parent b1d5c70 commit 6f873da
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.11.3](https://github.com/salesforcecli/sf-plugins-core/compare/v1.11.2...v1.11.3) (2022-04-12)

### Bug Fixes

- need await in order for the catch to be effective ([2805578](https://github.com/salesforcecli/sf-plugins-core/commit/28055783503177667620528b6246b252ff10cb7f))

### [1.11.2](https://github.com/salesforcecli/sf-plugins-core/compare/v1.11.1...v1.11.2) (2022-04-11)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@salesforce/sf-plugins-core",
"version": "1.11.2",
"version": "1.11.3",
"description": "Utils for writing deploy and retrieve plugins",
"main": "lib/exported",
"types": "lib/exported.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions src/sfCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ export interface SfCommandInterface extends Interfaces.Command {
}

export const StandardColors = {
error: chalk.hex('BF0201'),
warning: chalk.hex('FF9A3C'),
error: chalk.bold.red,
warning: chalk.bold.yellow,
info: chalk.dim,
success: chalk.hex('4BCA81'),
success: chalk.bold.green,
};

/**
Expand Down

0 comments on commit 6f873da

Please sign in to comment.