@salesforce/sf-plugins-core 1.6.1 → 1.7.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 +6 -0
- package/lib/sfCommand.js +1 -1
- package/package.json +1 -1
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.7.0](https://github.com/salesforcecli/sf-plugins-core/compare/v1.6.1...v1.7.0) (2022-03-11)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- suppress progress bar output with env vars ([d2e8a84](https://github.com/salesforcecli/sf-plugins-core/commit/d2e8a849d7ca93b3dba538a26ce5f9ab7f858984))
|
|
10
|
+
|
|
5
11
|
### [1.6.1](https://github.com/salesforcecli/sf-plugins-core/compare/v1.6.0...v1.6.1) (2022-03-09)
|
|
6
12
|
|
|
7
13
|
### Bug Fixes
|
package/lib/sfCommand.js
CHANGED
|
@@ -28,7 +28,7 @@ class SfCommand extends core_1.Command {
|
|
|
28
28
|
this.warnings = [];
|
|
29
29
|
const outputEnabled = !this.jsonEnabled();
|
|
30
30
|
this.spinner = new ux_1.Spinner(outputEnabled);
|
|
31
|
-
this.progress = new ux_1.Progress(outputEnabled);
|
|
31
|
+
this.progress = new ux_1.Progress(outputEnabled && core_2.envVars.getBoolean(core_2.EnvironmentVariable.SF_USE_PROGRESS_BAR, true));
|
|
32
32
|
this.ux = new ux_1.Ux(outputEnabled);
|
|
33
33
|
this.prompter = new ux_1.Prompter();
|
|
34
34
|
this.lifecycle = core_2.Lifecycle.getInstance();
|