@salesforce/core 3.35.0 → 3.36.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.
|
@@ -235,7 +235,7 @@ class ConfigAggregator extends kit_1.AsyncOptionalCreatable {
|
|
|
235
235
|
*/
|
|
236
236
|
getConfigInfo() {
|
|
237
237
|
const infos = Object.keys(this.getConfig())
|
|
238
|
-
.filter((key) => this.getAllowedProperties().some((element) => key === element.key))
|
|
238
|
+
.filter((key) => this.getAllowedProperties().some((element) => key === element.key || key === element.newKey))
|
|
239
239
|
.map((key) => this.getInfo(key))
|
|
240
240
|
.filter((info) => !!info);
|
|
241
241
|
return (0, kit_1.sortBy)(infos, 'key');
|
package/lib/config/envVars.js
CHANGED
|
@@ -229,7 +229,8 @@ exports.SUPPORTED_ENV_VARS = {
|
|
|
229
229
|
},
|
|
230
230
|
[EnvironmentVariable.SFDX_REST_DEPLOY]: {
|
|
231
231
|
description: getMessage(EnvironmentVariable.SFDX_REST_DEPLOY),
|
|
232
|
-
|
|
232
|
+
// this is not an "official" env var, but it supports the env=>config naming convention for the config that lives in plugin-deploy-retrieve
|
|
233
|
+
synonymOf: 'SF_ORG_METADATA_REST_DEPLOY',
|
|
233
234
|
},
|
|
234
235
|
[EnvironmentVariable.SFDX_SOURCE_MEMBER_POLLING_TIMEOUT]: {
|
|
235
236
|
description: getMessage(EnvironmentVariable.SFDX_SOURCE_MEMBER_POLLING_TIMEOUT),
|