@salesforce/sf-plugins-core 1.6.0 → 1.6.1

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.6.1](https://github.com/salesforcecli/sf-plugins-core/compare/v1.6.0...v1.6.1) (2022-03-09)
6
+
7
+ ### Bug Fixes
8
+
9
+ - erturn error - dont throw ([0ea70bc](https://github.com/salesforcecli/sf-plugins-core/commit/0ea70bc12cecd380a907323eba84ddb9d5a44e08))
10
+
5
11
  ## [1.6.0](https://github.com/salesforcecli/sf-plugins-core/compare/v1.5.3...v1.6.0) (2022-03-08)
6
12
 
7
13
  ### Features
package/lib/sfCommand.js CHANGED
@@ -164,7 +164,7 @@ class SfCommand extends core_1.Command {
164
164
  if (this.jsonEnabled()) {
165
165
  core_1.CliUx.ux.styledJSON(this.toErrorJson(error));
166
166
  }
167
- throw error;
167
+ return error;
168
168
  }
169
169
  /**
170
170
  * Format errors and actions for human consumption. Adds 'Error:',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/sf-plugins-core",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "Utils for writing deploy and retrieve plugins",
5
5
  "main": "lib/exported",
6
6
  "types": "lib/exported.d.ts",