@salesforce/sf-plugins-core 1.11.3 → 1.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  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.
4
4
 
5
+ ## [1.12.0](https://github.com/salesforcecli/sf-plugins-core/compare/v1.11.3...v1.12.0) (2022-04-18)
6
+
7
+ ### Features
8
+
9
+ - adjusting message colors for accessibility ([6f873da](https://github.com/salesforcecli/sf-plugins-core/commit/6f873daf2e05c2ec0b52b357b15333a3b68e106e))
10
+
5
11
  ### [1.11.3](https://github.com/salesforcecli/sf-plugins-core/compare/v1.11.2...v1.11.3) (2022-04-12)
6
12
 
7
13
  ### Bug Fixes
package/lib/sfCommand.js CHANGED
@@ -15,10 +15,10 @@ const ux_1 = require("./ux");
15
15
  core_2.Messages.importMessagesDirectory(__dirname);
16
16
  const messages = core_2.Messages.loadMessages('@salesforce/sf-plugins-core', 'messages');
17
17
  exports.StandardColors = {
18
- error: chalk.hex('BF0201'),
19
- warning: chalk.hex('FF9A3C'),
18
+ error: chalk.bold.red,
19
+ warning: chalk.bold.yellow,
20
20
  info: chalk.dim,
21
- success: chalk.hex('4BCA81'),
21
+ success: chalk.bold.green,
22
22
  };
23
23
  /**
24
24
  * A base command that provides convenient access to CLI help
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/sf-plugins-core",
3
- "version": "1.11.3",
3
+ "version": "1.12.0",
4
4
  "description": "Utils for writing deploy and retrieve plugins",
5
5
  "main": "lib/exported",
6
6
  "types": "lib/exported.d.ts",