@salesforce/cli 1.18.0 → 1.19.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 +2 -0
- package/README.md +3 -2
- package/dist/hooks/incomplete.js +27 -0
- package/npm-shrinkwrap.json +1670 -5408
- package/oclif.manifest.json +1 -1
- package/package.json +11 -9
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
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.19.0](https://github.com/salesforcecli/cli/compare/v1.18.0...v1.19.0) (2022-03-16)
|
|
6
|
+
|
|
5
7
|
## [1.18.0](https://github.com/salesforcecli/cli/compare/v1.17.0...v1.18.0) (2022-03-09)
|
|
6
8
|
|
|
7
9
|
## [1.17.0](https://github.com/salesforcecli/cli/compare/v1.16.0...v1.17.0) (2022-03-02)
|
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ $ npm install -g @salesforce/cli
|
|
|
31
31
|
$ sf COMMAND
|
|
32
32
|
running command...
|
|
33
33
|
$ sf (--version|-v)
|
|
34
|
-
@salesforce/cli/1.
|
|
34
|
+
@salesforce/cli/1.19.0 linux-x64 node-v14.19.0
|
|
35
35
|
$ sf --help [COMMAND]
|
|
36
36
|
USAGE
|
|
37
37
|
$ sf COMMAND
|
|
@@ -323,7 +323,7 @@ EXAMPLES
|
|
|
323
323
|
$ sf deploy --interactive
|
|
324
324
|
```
|
|
325
325
|
|
|
326
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/v1.1.
|
|
326
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/v1.1.3/src/commands/deploy.ts)_
|
|
327
327
|
|
|
328
328
|
## `sf deploy functions`
|
|
329
329
|
|
|
@@ -461,6 +461,7 @@ ENVIRONMENT VARIABLES
|
|
|
461
461
|
SFDX_DEFAULTUSERNAME Username or alias of your default org. Overrides the defaultusername configuration value.
|
|
462
462
|
SFDX_USE_PROGRESS_BAR Set to false to disable the progress bar when running force:mdapi:deploy, force:source:deploy,
|
|
463
463
|
or force:source:push.
|
|
464
|
+
SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
|
|
464
465
|
```
|
|
465
466
|
|
|
466
467
|
## `sf env compute collaborator add`
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*
|
|
3
|
+
* Copyright (c) 2022, salesforce.com, inc.
|
|
4
|
+
* All rights reserved.
|
|
5
|
+
* Licensed under the BSD 3-Clause license.
|
|
6
|
+
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
7
|
+
*/
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
const core_1 = require("@oclif/core");
|
|
10
|
+
const sf_plugins_core_1 = require("@salesforce/sf-plugins-core");
|
|
11
|
+
const hook = async function ({ config, matches, argv }) {
|
|
12
|
+
const prompter = new sf_plugins_core_1.Prompter();
|
|
13
|
+
const { command } = await prompter.timedPrompt([
|
|
14
|
+
{
|
|
15
|
+
name: 'command',
|
|
16
|
+
type: 'list',
|
|
17
|
+
message: 'Which of these commands do you mean',
|
|
18
|
+
choices: matches.map((p) => (0, core_1.toConfiguredId)(p.id, config)),
|
|
19
|
+
},
|
|
20
|
+
]);
|
|
21
|
+
if (argv.includes('--help') || argv.includes('-h')) {
|
|
22
|
+
return config.runCommand('help', [(0, core_1.toStandardizedId)(command, config)]);
|
|
23
|
+
}
|
|
24
|
+
return config.runCommand((0, core_1.toStandardizedId)(command, config), argv);
|
|
25
|
+
};
|
|
26
|
+
exports.default = hook;
|
|
27
|
+
//# sourceMappingURL=incomplete.js.map
|