@salesforce/cli 1.69.0 → 1.70.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/dist/cli.js +0 -7
- package/npm-shrinkwrap.json +16098 -19708
- package/oclif.manifest.json +1041 -2
- package/package.json +30 -29
package/dist/cli.js
CHANGED
|
@@ -10,10 +10,8 @@ exports.create = exports.configureAutoUpdate = exports.configureUpdateSites = ex
|
|
|
10
10
|
const os = require("os");
|
|
11
11
|
const path = require("path");
|
|
12
12
|
const core_1 = require("@oclif/core");
|
|
13
|
-
const plugin_version_1 = require("@oclif/plugin-version");
|
|
14
13
|
const kit_1 = require("@salesforce/kit");
|
|
15
14
|
const ts_types_1 = require("@salesforce/ts-types");
|
|
16
|
-
const plugin_info_1 = require("@salesforce/plugin-info");
|
|
17
15
|
const Debug = require("debug");
|
|
18
16
|
const env_1 = require("./util/env");
|
|
19
17
|
const debug = Debug('sf');
|
|
@@ -117,11 +115,6 @@ function create(version, channel, run, env = env_1.default) {
|
|
|
117
115
|
configureUpdateSites(config, env);
|
|
118
116
|
configureAutoUpdate(env);
|
|
119
117
|
debugCliInfo(version, channel, env, config);
|
|
120
|
-
if (args[0] === 'doctor') {
|
|
121
|
-
// The doctor command requires CLI version details obtained from the CLI's oclif config.
|
|
122
|
-
const versionDetail = await plugin_version_1.VersionCommand.run(['--verbose', '--json']);
|
|
123
|
-
plugin_info_1.Doctor.init(config, versionDetail);
|
|
124
|
-
}
|
|
125
118
|
// Example of how run is used in a test https://github.com/salesforcecli/cli/pull/171/files#diff-1deee0a575599b2df117c280da319f7938aaf6fdb0c04bcdbde769dbf464be69R46
|
|
126
119
|
return run ? run(args, config) : (0, core_1.run)(args, config);
|
|
127
120
|
},
|