@salesforce/cli 2.12.5 → 2.12.7-esm.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/README.md +5 -5
- package/bin/dev.js +7 -0
- package/bin/run.js +30 -0
- package/dist/cli.js +34 -40
- package/dist/flags.js +1 -7
- package/dist/help/sfCommandHelp.js +2 -6
- package/dist/help/sfHelp.js +5 -8
- package/dist/hooks/display-release-notes.js +14 -39
- package/dist/hooks/incomplete.js +11 -12
- package/dist/hooks/pluginsPreinstall.js +3 -5
- package/dist/hooks/prerun.js +7 -8
- package/dist/index.js +1 -2
- package/dist/util/env.js +3 -7
- package/npm-shrinkwrap.json +3384 -2882
- package/oclif.manifest.json +1 -1
- package/package.json +96 -21
- package/scripts/post-install-release-notes.js +39 -37
- package/scripts/preinstall.js +5 -4
- package/bin/dev +0 -13
- package/bin/run +0 -25
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ $ npm install -g @salesforce/cli
|
|
|
24
24
|
$ sf COMMAND
|
|
25
25
|
running command...
|
|
26
26
|
$ sf (--version|-v)
|
|
27
|
-
@salesforce/cli/2.12.
|
|
27
|
+
@salesforce/cli/2.12.7-esm.0 linux-x64 node-v18.18.0
|
|
28
28
|
$ sf --help [COMMAND]
|
|
29
29
|
USAGE
|
|
30
30
|
$ sf COMMAND
|
|
@@ -6939,7 +6939,7 @@ FLAG DESCRIPTIONS
|
|
|
6939
6939
|
If you don't specify this flag, the command prompts you to choose from your local objects.
|
|
6940
6940
|
```
|
|
6941
6941
|
|
|
6942
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/0.2.
|
|
6942
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/0.2.10/src/commands/schema/generate/field.ts)_
|
|
6943
6943
|
|
|
6944
6944
|
## `sf schema generate platformevent`
|
|
6945
6945
|
|
|
@@ -6968,7 +6968,7 @@ EXAMPLES
|
|
|
6968
6968
|
$ sf schema generate platformevent --label "My Platform Event"
|
|
6969
6969
|
```
|
|
6970
6970
|
|
|
6971
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/0.2.
|
|
6971
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/0.2.10/src/commands/schema/generate/platformevent.ts)_
|
|
6972
6972
|
|
|
6973
6973
|
## `sf schema generate sobject`
|
|
6974
6974
|
|
|
@@ -7022,7 +7022,7 @@ FLAG DESCRIPTIONS
|
|
|
7022
7022
|
* Streaming API: With Bulk API and Sharing, classifies the custom object as an Enterprise Application object.
|
|
7023
7023
|
```
|
|
7024
7024
|
|
|
7025
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/0.2.
|
|
7025
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/0.2.10/src/commands/schema/generate/sobject.ts)_
|
|
7026
7026
|
|
|
7027
7027
|
## `sf schema generate tab`
|
|
7028
7028
|
|
|
@@ -7069,7 +7069,7 @@ FLAG DESCRIPTIONS
|
|
|
7069
7069
|
The API name for a custom object always ends in "__c", such as "MyObject__c".
|
|
7070
7070
|
```
|
|
7071
7071
|
|
|
7072
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/0.2.
|
|
7072
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/0.2.10/src/commands/schema/generate/tab.ts)_
|
|
7073
7073
|
|
|
7074
7074
|
## `sf search`
|
|
7075
7075
|
|
package/bin/dev.js
ADDED
package/bin/run.js
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
void (async () => {
|
|
4
|
+
// Since the CLI is a single process, we can have a larger amount of max listeners since
|
|
5
|
+
// the process gets shut down. Don't set it to 0 (no limit) since we should still be aware
|
|
6
|
+
// of rouge event listeners
|
|
7
|
+
process.setMaxListeners(parseInt(process.env.SF_MAX_EVENT_LISTENERS, 10) || 1000);
|
|
8
|
+
|
|
9
|
+
// Don't let other plugins override the CLI specified max listener count
|
|
10
|
+
process.setMaxListeners = () => {};
|
|
11
|
+
|
|
12
|
+
// Pre-process/prune flags before creating or running the actual CLI
|
|
13
|
+
(await import('../dist/flags.js')).preprocessCliFlags(process);
|
|
14
|
+
|
|
15
|
+
const oclif = await import('@oclif/core');
|
|
16
|
+
const { createRequire } = await import('module');
|
|
17
|
+
const pjson = createRequire(import.meta.url)('../package.json');
|
|
18
|
+
|
|
19
|
+
const cli = await import('../dist/cli.js');
|
|
20
|
+
|
|
21
|
+
cli
|
|
22
|
+
.create({ version: pjson.version, bin: pjson.oclif.bin, channel: 'stable' })
|
|
23
|
+
.run()
|
|
24
|
+
.then(async () => {
|
|
25
|
+
await oclif.flush();
|
|
26
|
+
})
|
|
27
|
+
.catch(async (err) => {
|
|
28
|
+
await oclif.handle(err);
|
|
29
|
+
});
|
|
30
|
+
})();
|
package/dist/cli.js
CHANGED
|
@@ -1,59 +1,55 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
/*
|
|
3
2
|
* Copyright (c) 2022, salesforce.com, inc.
|
|
4
3
|
* All rights reserved.
|
|
5
4
|
* Licensed under the BSD 3-Clause license.
|
|
6
5
|
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
7
6
|
*/
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
const Debug = require("debug");
|
|
16
|
-
const env_1 = require("./util/env");
|
|
7
|
+
import * as os from 'os';
|
|
8
|
+
import * as path from 'path';
|
|
9
|
+
import { fileURLToPath } from 'url';
|
|
10
|
+
import { Config, run as oclifRun, settings } from '@oclif/core';
|
|
11
|
+
import { set } from '@salesforce/kit';
|
|
12
|
+
import Debug from 'debug';
|
|
13
|
+
import { default as nodeEnv, Env } from './util/env.js';
|
|
17
14
|
const debug = Debug('sf');
|
|
18
15
|
const envVars = [
|
|
19
16
|
...new Set([
|
|
20
17
|
...Object.keys(process.env).filter((e) => e.startsWith('SF_') || e.startsWith('SFDX_')),
|
|
21
18
|
'NODE_OPTIONS',
|
|
22
|
-
|
|
19
|
+
Env.SF_AUTOUPDATE_DISABLE,
|
|
23
20
|
'SF_BINPATH',
|
|
24
21
|
'SF_COMPILE_CACHE',
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
22
|
+
Env.SF_DISABLE_AUTOUPDATE,
|
|
23
|
+
Env.SF_ENV,
|
|
24
|
+
Env.SF_INSTALLER,
|
|
25
|
+
Env.SF_NPM_REGISTRY,
|
|
29
26
|
'SF_REDIRECTED',
|
|
30
|
-
|
|
27
|
+
Env.SF_UPDATE_INSTRUCTIONS,
|
|
31
28
|
]),
|
|
32
29
|
];
|
|
33
|
-
|
|
30
|
+
export const UPDATE_DISABLED_INSTALLER = 'Manual and automatic CLI updates have been disabled by setting "SF_AUTOUPDATE_DISABLE=true". ' +
|
|
34
31
|
'To check for a new version, unset that environment variable.';
|
|
35
|
-
|
|
36
|
-
|
|
32
|
+
export const UPDATE_DISABLED_NPM = 'Use "npm update --global @salesforce/cli" to update npm-based installations.';
|
|
33
|
+
export const UPDATE_DISABLED_DEMO = 'Manual and automatic CLI updates have been disabled in DEMO mode. ' +
|
|
37
34
|
'To check for a new version, unset the environment variable SF_ENV.';
|
|
38
|
-
function configureUpdateSites(config, env =
|
|
35
|
+
export function configureUpdateSites(config, env = nodeEnv) {
|
|
39
36
|
const npmRegistry = env.getNpmRegistryOverride();
|
|
40
37
|
if (npmRegistry) {
|
|
41
38
|
// Override config value if set via envar
|
|
42
|
-
|
|
39
|
+
set(config, 'pjson.oclif.warn-if-update-available.registry', npmRegistry);
|
|
43
40
|
}
|
|
44
41
|
}
|
|
45
|
-
|
|
46
|
-
function configureAutoUpdate(envars) {
|
|
42
|
+
export function configureAutoUpdate(envars) {
|
|
47
43
|
if (envars.isDemoMode()) {
|
|
48
44
|
// Disable autoupdates in demo mode
|
|
49
45
|
envars.setAutoupdateDisabled(true);
|
|
50
|
-
envars.setUpdateInstructions(
|
|
46
|
+
envars.setUpdateInstructions(UPDATE_DISABLED_DEMO);
|
|
51
47
|
return;
|
|
52
48
|
}
|
|
53
49
|
if (envars.isInstaller()) {
|
|
54
50
|
envars.normalizeAutoupdateDisabled();
|
|
55
51
|
if (envars.isAutoupdateDisabled()) {
|
|
56
|
-
envars.setUpdateInstructions(
|
|
52
|
+
envars.setUpdateInstructions(UPDATE_DISABLED_INSTALLER);
|
|
57
53
|
}
|
|
58
54
|
return;
|
|
59
55
|
}
|
|
@@ -63,10 +59,9 @@ function configureAutoUpdate(envars) {
|
|
|
63
59
|
envars.setAutoupdateDisabled(true);
|
|
64
60
|
}
|
|
65
61
|
if (envars.isAutoupdateDisabled()) {
|
|
66
|
-
envars.setUpdateInstructions(
|
|
62
|
+
envars.setUpdateInstructions(UPDATE_DISABLED_NPM);
|
|
67
63
|
}
|
|
68
64
|
}
|
|
69
|
-
exports.configureAutoUpdate = configureAutoUpdate;
|
|
70
65
|
function debugCliInfo(version, channel, env, config) {
|
|
71
66
|
function debugSection(section, items) {
|
|
72
67
|
const pad = 25;
|
|
@@ -91,28 +86,27 @@ function debugCliInfo(version, channel, env, config) {
|
|
|
91
86
|
debugSection('ENV', [...envVars].map((key) => [key, env.getString(key, '<not set>')]));
|
|
92
87
|
debugSection('ARGS', process.argv.map((arg, i) => [i.toString(), arg]));
|
|
93
88
|
}
|
|
94
|
-
function create(
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
const pjson = require(path.resolve(__dirname, '..', 'package.json'));
|
|
89
|
+
export function create(opts) {
|
|
90
|
+
var _a;
|
|
91
|
+
settings.performanceEnabled = true;
|
|
92
|
+
const root = path.resolve(fileURLToPath(import.meta.url), '..');
|
|
99
93
|
const args = process.argv.slice(2);
|
|
94
|
+
const env = (_a = opts.env) !== null && _a !== void 0 ? _a : nodeEnv;
|
|
100
95
|
return {
|
|
101
96
|
async run() {
|
|
102
|
-
const config = new
|
|
103
|
-
name:
|
|
97
|
+
const config = new Config({
|
|
98
|
+
name: opts.bin,
|
|
104
99
|
root,
|
|
105
|
-
version,
|
|
106
|
-
channel,
|
|
100
|
+
version: opts.version,
|
|
101
|
+
channel: opts.channel,
|
|
107
102
|
});
|
|
108
103
|
await config.load();
|
|
109
|
-
configureUpdateSites(config, env);
|
|
104
|
+
configureUpdateSites(config, opts.env);
|
|
110
105
|
configureAutoUpdate(env);
|
|
111
|
-
debugCliInfo(version, channel, env, config);
|
|
106
|
+
debugCliInfo(opts.version, opts.channel, env, config);
|
|
112
107
|
// Example of how run is used in a test https://github.com/salesforcecli/cli/pull/171/files#diff-1deee0a575599b2df117c280da319f7938aaf6fdb0c04bcdbde769dbf464be69R46
|
|
113
|
-
return run ? run(args, config) : (
|
|
108
|
+
return opts.run ? opts.run(args, config) : oclifRun(args, config);
|
|
114
109
|
},
|
|
115
110
|
};
|
|
116
111
|
}
|
|
117
|
-
exports.create = create;
|
|
118
112
|
//# sourceMappingURL=cli.js.map
|
package/dist/flags.js
CHANGED
|
@@ -1,13 +1,10 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
/*
|
|
3
2
|
* Copyright (c) 2020, salesforce.com, inc.
|
|
4
3
|
* All rights reserved.
|
|
5
4
|
* Licensed under the BSD 3-Clause license.
|
|
6
5
|
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
7
6
|
*/
|
|
8
|
-
|
|
9
|
-
exports.preprocessCliFlags = void 0;
|
|
10
|
-
function preprocessCliFlags(process) {
|
|
7
|
+
export function preprocessCliFlags(process) {
|
|
11
8
|
process.argv.map((arg) => {
|
|
12
9
|
if (arg === '--dev-debug') {
|
|
13
10
|
let debug = '*';
|
|
@@ -25,7 +22,4 @@ function preprocessCliFlags(process) {
|
|
|
25
22
|
}
|
|
26
23
|
});
|
|
27
24
|
}
|
|
28
|
-
exports.preprocessCliFlags = preprocessCliFlags;
|
|
29
|
-
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
|
|
30
|
-
module.exports.preprocessCliFlags = preprocessCliFlags;
|
|
31
25
|
//# sourceMappingURL=flags.js.map
|
|
@@ -1,14 +1,11 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SfCommandHelp = void 0;
|
|
4
1
|
/*
|
|
5
2
|
* Copyright (c) 2022, salesforce.com, inc.
|
|
6
3
|
* All rights reserved.
|
|
7
4
|
* Licensed under the BSD 3-Clause license.
|
|
8
5
|
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
9
6
|
*/
|
|
10
|
-
|
|
11
|
-
class SfCommandHelp extends
|
|
7
|
+
import { CommandHelp } from '@oclif/core';
|
|
8
|
+
export class SfCommandHelp extends CommandHelp {
|
|
12
9
|
constructor(command, config, opts) {
|
|
13
10
|
super(command, config, opts);
|
|
14
11
|
this.command = command;
|
|
@@ -57,5 +54,4 @@ class SfCommandHelp extends core_1.CommandHelp {
|
|
|
57
54
|
return sections;
|
|
58
55
|
}
|
|
59
56
|
}
|
|
60
|
-
exports.SfCommandHelp = SfCommandHelp;
|
|
61
57
|
//# sourceMappingURL=sfCommandHelp.js.map
|
package/dist/help/sfHelp.js
CHANGED
|
@@ -1,18 +1,16 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
1
|
/*
|
|
4
2
|
* Copyright (c) 2022, salesforce.com, inc.
|
|
5
3
|
* All rights reserved.
|
|
6
4
|
* Licensed under the BSD 3-Clause license.
|
|
7
5
|
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
8
6
|
*/
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
class SfHelp extends
|
|
7
|
+
import { Help } from '@oclif/core';
|
|
8
|
+
import chalk from 'chalk';
|
|
9
|
+
import { SfCommandHelp } from './sfCommandHelp.js';
|
|
10
|
+
export default class SfHelp extends Help {
|
|
13
11
|
constructor() {
|
|
14
12
|
super(...arguments);
|
|
15
|
-
this.CommandHelpClass =
|
|
13
|
+
this.CommandHelpClass = SfCommandHelp;
|
|
16
14
|
this.showShortHelp = false;
|
|
17
15
|
this.commands = [];
|
|
18
16
|
this.subCommands = {};
|
|
@@ -45,5 +43,4 @@ class SfHelp extends core_1.Help {
|
|
|
45
43
|
super.log(...formatted);
|
|
46
44
|
}
|
|
47
45
|
}
|
|
48
|
-
exports.default = SfHelp;
|
|
49
46
|
//# sourceMappingURL=sfHelp.js.map
|
|
@@ -1,47 +1,22 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
/*
|
|
3
2
|
* Copyright (c) 2021, salesforce.com, inc.
|
|
4
3
|
* All rights reserved.
|
|
5
4
|
* Licensed under the BSD 3-Clause license.
|
|
6
5
|
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
7
6
|
*/
|
|
8
|
-
|
|
9
|
-
const
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
core_1.ux.log('- Set the SF_HIDE_RELEASE_NOTES env var to "true" to skip this script\n');
|
|
15
|
-
core_1.ux.log(msg.toString());
|
|
16
|
-
};
|
|
17
|
-
/*
|
|
18
|
-
* NOTE: Please read "Notes about the hook scripts" in this PR before making changes:
|
|
19
|
-
* https://github.com/salesforcecli/sfdx-cli/pull/407
|
|
20
|
-
*/
|
|
21
|
-
const hook = async () => new Promise((resolve) => {
|
|
22
|
-
if (process.env.SF_HIDE_RELEASE_NOTES === 'true') {
|
|
23
|
-
resolve();
|
|
7
|
+
import { ux } from '@oclif/core';
|
|
8
|
+
export const hook = async function ({ config }) {
|
|
9
|
+
if (process.env.SF_HIDE_RELEASE_NOTES === 'true')
|
|
10
|
+
return;
|
|
11
|
+
try {
|
|
12
|
+
return await config.runCommand('whatsnew', ['--hook']);
|
|
24
13
|
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
});
|
|
34
|
-
cmd.on('error', (error) => {
|
|
35
|
-
logError(error);
|
|
36
|
-
resolve();
|
|
37
|
-
});
|
|
38
|
-
// 'exit' fires whether or not the stream are finished
|
|
39
|
-
cmd.on('exit', () => {
|
|
40
|
-
resolve();
|
|
41
|
-
});
|
|
42
|
-
cmd.on('close', () => {
|
|
43
|
-
resolve();
|
|
44
|
-
});
|
|
45
|
-
});
|
|
46
|
-
exports.default = hook;
|
|
14
|
+
catch (err) {
|
|
15
|
+
const error = err;
|
|
16
|
+
ux.log('NOTE: This error can be ignored in CI and may be silenced in the future');
|
|
17
|
+
ux.log('- Set the SF_HIDE_RELEASE_NOTES env var to "true" to skip this script\n');
|
|
18
|
+
ux.log(error.message);
|
|
19
|
+
}
|
|
20
|
+
};
|
|
21
|
+
export default hook;
|
|
47
22
|
//# sourceMappingURL=display-release-notes.js.map
|
package/dist/hooks/incomplete.js
CHANGED
|
@@ -1,19 +1,18 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
/*
|
|
3
2
|
* Copyright (c) 2022, salesforce.com, inc.
|
|
4
3
|
* All rights reserved.
|
|
5
4
|
* Licensed under the BSD 3-Clause license.
|
|
6
5
|
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
7
6
|
*/
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
const sf_plugins_core_1 = require("@salesforce/sf-plugins-core");
|
|
7
|
+
import * as os from 'os';
|
|
8
|
+
import { toConfiguredId, toStandardizedId, loadHelpClass } from '@oclif/core';
|
|
9
|
+
import { Prompter } from '@salesforce/sf-plugins-core';
|
|
12
10
|
function buildChoices(matches, config) {
|
|
13
|
-
const configuredIds = matches.map((p) =>
|
|
11
|
+
const configuredIds = matches.map((p) => toConfiguredId(p.id, config));
|
|
14
12
|
const maxCommandLength = configuredIds.reduce((max, id) => Math.max(max, id.length), 0);
|
|
15
13
|
return matches.map((p, i) => {
|
|
16
|
-
|
|
14
|
+
var _a, _b, _c;
|
|
15
|
+
const summary = (_c = (_a = p.summary) !== null && _a !== void 0 ? _a : (_b = p.description) === null || _b === void 0 ? void 0 : _b.split(os.EOL)[0]) !== null && _c !== void 0 ? _c : '';
|
|
17
16
|
return {
|
|
18
17
|
name: `${configuredIds[i].padEnd(maxCommandLength + 5, ' ')}${summary}`,
|
|
19
18
|
value: p,
|
|
@@ -22,7 +21,7 @@ function buildChoices(matches, config) {
|
|
|
22
21
|
});
|
|
23
22
|
}
|
|
24
23
|
async function determineCommand(config, matches) {
|
|
25
|
-
const prompter = new
|
|
24
|
+
const prompter = new Prompter();
|
|
26
25
|
const choices = buildChoices(matches, config);
|
|
27
26
|
const { command } = await prompter.timedPrompt([
|
|
28
27
|
{
|
|
@@ -37,12 +36,12 @@ async function determineCommand(config, matches) {
|
|
|
37
36
|
const hook = async function ({ config, matches, argv }) {
|
|
38
37
|
const command = await determineCommand(config, matches);
|
|
39
38
|
if (argv.includes('--help') || argv.includes('-h')) {
|
|
40
|
-
const Help = await
|
|
39
|
+
const Help = await loadHelpClass(config);
|
|
41
40
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
|
|
42
41
|
const help = new Help(config, config.pjson.helpOptions);
|
|
43
|
-
return help.showHelp([
|
|
42
|
+
return help.showHelp([toStandardizedId(command, config), ...argv]);
|
|
44
43
|
}
|
|
45
|
-
return config.runCommand(
|
|
44
|
+
return config.runCommand(toStandardizedId(command, config), argv);
|
|
46
45
|
};
|
|
47
|
-
|
|
46
|
+
export default hook;
|
|
48
47
|
//# sourceMappingURL=incomplete.js.map
|
|
@@ -1,18 +1,16 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
/*
|
|
3
2
|
* Copyright (c) 2022, salesforce.com, inc.
|
|
4
3
|
* All rights reserved.
|
|
5
4
|
* Licensed under the BSD 3-Clause license.
|
|
6
5
|
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
7
6
|
*/
|
|
8
|
-
|
|
9
|
-
const core_1 = require("@oclif/core");
|
|
7
|
+
import { Errors } from '@oclif/core';
|
|
10
8
|
const hook = async function (options) {
|
|
11
9
|
const verifySignHookResult = await this.config.runHook('plugins:preinstall:verify:signature', options);
|
|
12
10
|
const pluginTrustFailure = verifySignHookResult.failures.find((failure) => failure.plugin.name === '@salesforce/plugin-trust');
|
|
13
11
|
if (pluginTrustFailure !== undefined) {
|
|
14
|
-
|
|
12
|
+
await Errors.handle(pluginTrustFailure.error);
|
|
15
13
|
}
|
|
16
14
|
};
|
|
17
|
-
|
|
15
|
+
export default hook;
|
|
18
16
|
//# sourceMappingURL=pluginsPreinstall.js.map
|
package/dist/hooks/prerun.js
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
/*
|
|
3
2
|
* Copyright (c) 2023, salesforce.com, inc.
|
|
4
3
|
* All rights reserved.
|
|
5
4
|
* Licensed under the BSD 3-Clause license.
|
|
6
5
|
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
7
6
|
*/
|
|
8
|
-
|
|
9
|
-
const core_1 = require("@oclif/core");
|
|
7
|
+
import { ux } from '@oclif/core';
|
|
10
8
|
// eslint-disable-next-line @typescript-eslint/require-await
|
|
11
9
|
const hook = async function ({ Command, config }) {
|
|
10
|
+
var _a, _b, _c;
|
|
12
11
|
if (process.argv.includes('--json'))
|
|
13
12
|
return;
|
|
14
13
|
const { plugin } = Command;
|
|
@@ -16,14 +15,14 @@ const hook = async function ({ Command, config }) {
|
|
|
16
15
|
return;
|
|
17
16
|
if (plugin.type === 'link')
|
|
18
17
|
return;
|
|
19
|
-
const jitPlugins = config.pjson.oclif.jitPlugins
|
|
20
|
-
const deps = config.pjson.dependencies
|
|
21
|
-
const specifiedVersion = jitPlugins[plugin.name]
|
|
18
|
+
const jitPlugins = (_a = config.pjson.oclif.jitPlugins) !== null && _a !== void 0 ? _a : {};
|
|
19
|
+
const deps = (_b = config.pjson.dependencies) !== null && _b !== void 0 ? _b : {};
|
|
20
|
+
const specifiedVersion = (_c = jitPlugins[plugin.name]) !== null && _c !== void 0 ? _c : deps[plugin.name];
|
|
22
21
|
if (!specifiedVersion)
|
|
23
22
|
return;
|
|
24
23
|
if (plugin.version !== specifiedVersion) {
|
|
25
|
-
|
|
24
|
+
ux.warn(`Plugin ${plugin.name} (${plugin.version}) differs from the version specified by ${config.bin} (${specifiedVersion})`);
|
|
26
25
|
}
|
|
27
26
|
};
|
|
28
|
-
|
|
27
|
+
export default hook;
|
|
29
28
|
//# sourceMappingURL=prerun.js.map
|
package/dist/index.js
CHANGED
package/dist/util/env.js
CHANGED
|
@@ -1,14 +1,11 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Env = void 0;
|
|
4
1
|
/*
|
|
5
2
|
* Copyright (c) 2022, salesforce.com, inc.
|
|
6
3
|
* All rights reserved.
|
|
7
4
|
* Licensed under the BSD 3-Clause license.
|
|
8
5
|
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
9
6
|
*/
|
|
10
|
-
|
|
11
|
-
class Env extends
|
|
7
|
+
import { EnvVars } from '@salesforce/core/lib/config/envVars.js';
|
|
8
|
+
export class Env extends EnvVars {
|
|
12
9
|
constructor(env = process.env) {
|
|
13
10
|
super(env);
|
|
14
11
|
}
|
|
@@ -51,12 +48,11 @@ class Env extends envVars_1.EnvVars {
|
|
|
51
48
|
}
|
|
52
49
|
}
|
|
53
50
|
}
|
|
54
|
-
exports.Env = Env;
|
|
55
51
|
Env.SF_AUTOUPDATE_DISABLE = 'SF_AUTOUPDATE_DISABLE';
|
|
56
52
|
Env.SF_DISABLE_AUTOUPDATE = 'SF_DISABLE_AUTOUPDATE';
|
|
57
53
|
Env.SF_ENV = 'SF_ENV';
|
|
58
54
|
Env.SF_INSTALLER = 'SF_INSTALLER';
|
|
59
55
|
Env.SF_NPM_REGISTRY = 'SF_NPM_REGISTRY';
|
|
60
56
|
Env.SF_UPDATE_INSTRUCTIONS = 'SF_UPDATE_INSTRUCTIONS';
|
|
61
|
-
|
|
57
|
+
export default new Env();
|
|
62
58
|
//# sourceMappingURL=env.js.map
|