@salesforce/sf-plugins-core 1.7.1 → 1.7.2
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.2](https://github.com/salesforcecli/sf-plugins-core/compare/v1.7.1...v1.7.2) (2022-03-15)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- need to pass ms to timedPrompt function ([f285e07](https://github.com/salesforcecli/sf-plugins-core/commit/f285e07525937798d0251da69c86c05cc683edfd))
|
|
10
|
+
|
|
5
11
|
### [1.7.1](https://github.com/salesforcecli/sf-plugins-core/compare/v1.7.0...v1.7.1) (2022-03-11)
|
|
6
12
|
|
|
7
13
|
### Bug Fixes
|
package/lib/sfCommand.js
CHANGED
|
@@ -117,7 +117,7 @@ class SfCommand extends core_1.Command {
|
|
|
117
117
|
* Prompt user for information with a timeout (in milliseconds). See https://www.npmjs.com/package/inquirer for more.
|
|
118
118
|
*/
|
|
119
119
|
async timedPrompt(questions, ms = 10000, initialAnswers) {
|
|
120
|
-
return this.prompter.timedPrompt(questions,
|
|
120
|
+
return this.prompter.timedPrompt(questions, ms, initialAnswers);
|
|
121
121
|
}
|
|
122
122
|
async _run() {
|
|
123
123
|
if (this.statics.requiresProject) {
|