@salesforce/plugin-deploy-retrieve 3.12.19 → 3.12.20-dev.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 +17 -17
- package/lib/commands/project/delete/source.js +8 -3
- package/lib/commands/project/delete/source.js.map +1 -1
- package/lib/commands/project/deploy/report.js +6 -3
- package/lib/commands/project/deploy/report.js.map +1 -1
- package/lib/commands/project/deploy/resume.js +5 -4
- package/lib/commands/project/deploy/resume.js.map +1 -1
- package/lib/commands/project/deploy/start.d.ts +2 -0
- package/lib/commands/project/deploy/start.js +29 -17
- package/lib/commands/project/deploy/start.js.map +1 -1
- package/lib/commands/project/deploy/validate.js +6 -3
- package/lib/commands/project/deploy/validate.js.map +1 -1
- package/lib/commands/project/retrieve/start.d.ts +6 -1
- package/lib/commands/project/retrieve/start.js +50 -18
- package/lib/commands/project/retrieve/start.js.map +1 -1
- package/lib/utils/deployStages.d.ts +29 -0
- package/lib/utils/deployStages.js +166 -0
- package/lib/utils/deployStages.js.map +1 -0
- package/messages/retrieve.start.md +0 -12
- package/oclif.manifest.json +428 -428
- package/package.json +4 -3
- package/lib/utils/progressBar.d.ts +0 -11
- package/lib/utils/progressBar.js +0 -80
- package/lib/utils/progressBar.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-deploy-retrieve",
|
|
3
3
|
"description": "deploy and retrieve commands for sf",
|
|
4
|
-
"version": "3.12.
|
|
4
|
+
"version": "3.12.20-dev.0",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@oclif/core": "^4.0.28",
|
|
9
|
+
"@oclif/multi-stage-output": "^0.7.0",
|
|
9
10
|
"@salesforce/apex-node": "^8.1.9",
|
|
10
11
|
"@salesforce/core": "^8.6.1",
|
|
11
12
|
"@salesforce/kit": "^3.2.3",
|
|
@@ -250,7 +251,7 @@
|
|
|
250
251
|
"exports": "./lib/index.js",
|
|
251
252
|
"type": "module",
|
|
252
253
|
"sfdx": {
|
|
253
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/3.12.
|
|
254
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/3.12.
|
|
254
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/3.12.20-dev.0.crt",
|
|
255
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/3.12.20-dev.0.sig"
|
|
255
256
|
}
|
|
256
257
|
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { MetadataApiDeploy } from '@salesforce/source-deploy-retrieve';
|
|
2
|
-
import { Progress } from '@salesforce/sf-plugins-core';
|
|
3
|
-
export declare class DeployProgress extends Progress {
|
|
4
|
-
private deploy;
|
|
5
|
-
private static OPTIONS;
|
|
6
|
-
private lifecycle;
|
|
7
|
-
constructor(deploy: MetadataApiDeploy, jsonEnabled?: boolean);
|
|
8
|
-
start(): void;
|
|
9
|
-
private updateTrackingProgress;
|
|
10
|
-
private updateProgress;
|
|
11
|
-
}
|
package/lib/utils/progressBar.js
DELETED
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2022, salesforce.com, inc.
|
|
3
|
-
* All rights reserved.
|
|
4
|
-
* Licensed under the BSD 3-Clause license.
|
|
5
|
-
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
6
|
-
*/
|
|
7
|
-
import { envVars as env, EnvironmentVariable, Lifecycle, Messages, Logger } from '@salesforce/core';
|
|
8
|
-
import { Progress } from '@salesforce/sf-plugins-core';
|
|
9
|
-
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
|
|
10
|
-
const mdTransferMessages = Messages.loadMessages('@salesforce/plugin-deploy-retrieve', 'metadata.transfer');
|
|
11
|
-
const showBar = Boolean(process.env.TERM !== 'dumb' && process.stdin.isTTY && env.getBoolean(EnvironmentVariable.SF_USE_PROGRESS_BAR, true));
|
|
12
|
-
const logger = await Logger.child('deploy-progress');
|
|
13
|
-
export class DeployProgress extends Progress {
|
|
14
|
-
deploy;
|
|
15
|
-
static OPTIONS = {
|
|
16
|
-
title: 'Status',
|
|
17
|
-
format: `%s: {status} ${showBar ? '| {bar} ' : ''}| {value}/{total} Components{errorInfo}{testInfo}{trackingInfo}`,
|
|
18
|
-
barCompleteChar: '\u2588',
|
|
19
|
-
barIncompleteChar: '\u2591',
|
|
20
|
-
linewrap: true,
|
|
21
|
-
// people really like to get text output in CI systems
|
|
22
|
-
// they won't get the "bar" but will get the remaining template bits this way
|
|
23
|
-
noTTYOutput: true,
|
|
24
|
-
};
|
|
25
|
-
lifecycle = Lifecycle.getInstance();
|
|
26
|
-
constructor(deploy, jsonEnabled = false) {
|
|
27
|
-
super(!jsonEnabled);
|
|
28
|
-
this.deploy = deploy;
|
|
29
|
-
}
|
|
30
|
-
start() {
|
|
31
|
-
super.start(0, { status: 'Waiting', trackingInfo: '', testInfo: '' }, DeployProgress.OPTIONS);
|
|
32
|
-
// for sourceMember polling events
|
|
33
|
-
this.lifecycle.on('sourceMemberPollingEvent', (event) => Promise.resolve(this.updateTrackingProgress(event)));
|
|
34
|
-
this.deploy.onUpdate((data) => this.updateProgress(data));
|
|
35
|
-
// any thing else should make one final update, then stop the progress bar
|
|
36
|
-
this.deploy.onFinish((data) => {
|
|
37
|
-
this.updateProgress(data.response);
|
|
38
|
-
this.finish({ status: mdTransferMessages.getMessage(data.response.status) });
|
|
39
|
-
});
|
|
40
|
-
this.deploy.onCancel(() => this.stop());
|
|
41
|
-
this.deploy.onError((error) => {
|
|
42
|
-
this.stop();
|
|
43
|
-
throw error;
|
|
44
|
-
});
|
|
45
|
-
}
|
|
46
|
-
updateTrackingProgress(data) {
|
|
47
|
-
const { remaining, original } = data;
|
|
48
|
-
this.update(0, {
|
|
49
|
-
status: 'Polling SourceMembers',
|
|
50
|
-
trackingInfo: ` | Tracking: ${original - remaining}/${original}`,
|
|
51
|
-
});
|
|
52
|
-
}
|
|
53
|
-
updateProgress(data) {
|
|
54
|
-
// the numCompTot. isn't computed right away, wait to start until we know how many we have
|
|
55
|
-
const testInfo = data.numberTestsTotal
|
|
56
|
-
? ` | ${data.numberTestsCompleted ?? 0}/${data.numberTestsTotal ?? 0} Tests${data.numberTestErrors ? `(Errors:${data.numberTestErrors})` : ''}`
|
|
57
|
-
: '';
|
|
58
|
-
const errorInfo = data.numberComponentErrors > 0 ? ` | Errors: ${data.numberComponentErrors}` : '';
|
|
59
|
-
if (data.numberComponentsTotal) {
|
|
60
|
-
this.setTotal(data.numberComponentsTotal);
|
|
61
|
-
this.update(data.numberComponentsDeployed, {
|
|
62
|
-
errorInfo: data.numberComponentErrors > 0 ? ` | Errors: ${data.numberComponentErrors}` : '',
|
|
63
|
-
status: mdTransferMessages.getMessage(data.status),
|
|
64
|
-
testInfo,
|
|
65
|
-
});
|
|
66
|
-
}
|
|
67
|
-
else {
|
|
68
|
-
let status;
|
|
69
|
-
try {
|
|
70
|
-
status = mdTransferMessages.getMessage(data.status);
|
|
71
|
-
}
|
|
72
|
-
catch (e) {
|
|
73
|
-
logger.debug(`data.status message lookup failed for: ${data.status}`);
|
|
74
|
-
status = 'Waiting';
|
|
75
|
-
}
|
|
76
|
-
this.update(0, { errorInfo, testInfo, status });
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
//# sourceMappingURL=progressBar.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"progressBar.js","sourceRoot":"","sources":["../../src/utils/progressBar.ts"],"names":[],"mappings":"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"}
|