npm package diff
Package: @forge/cli
Versions: 10.5.1-next.6-experimental-22c15de - 10.6.0-next.13
File: package/out/command-line/controller/deploy-controller.js
Index: package/out/command-line/controller/deploy-controller.js
===================================================================
--- package/out/command-line/controller/deploy-controller.js
+++ package/out/command-line/controller/deploy-controller.js
@@ -193,10 +193,19 @@
}
const deployCommand = (await this.configFile.runtimeType()) === cli_shared_1.RuntimeType.nodejs
? this.nodePackageUploadDeployCommand
: this.sandboxPackageUploadDeployCommand;
- const packageConfig = (await this.configFile.readConfig()).app?.package;
- const analytics = await this.deployView.reportDeploymentProgress(appDetails, hasProdInstallations, () => deployCommand.execute({ handlers, resources, environmentKey: environment, packageConfig, majorVersion }));
+ const config = await this.configFile.readConfig();
+ const packageConfig = config.app?.package;
+ const analytics = await this.deployView.reportDeploymentProgress(appDetails, hasProdInstallations, () => deployCommand.execute({
+ handlers,
+ resources,
+ environmentKey: environment,
+ packageConfig,
+ majorVersion,
+ modules: config.modules,
+ i18nConfig: config.translations
+ }));
if (verify) {
await this.verifyPostDeployment(environment);
}
try {