@cenk1cenk2/oclif-common 3.1.0-beta.17 → 3.1.0-beta.18
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/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -696,7 +696,7 @@ var ConfigService = class {
|
|
|
696
696
|
if (Date.now() - startedAt > timeout) {
|
|
697
697
|
throw new Error(`Timed-out in ${timeout}ms while looking for element environment variables.`);
|
|
698
698
|
}
|
|
699
|
-
const extensions = variable.extensions.map(
|
|
699
|
+
const extensions = variable.extensions.map((extension) => {
|
|
700
700
|
const clone = JSON.parse(JSON.stringify(extension));
|
|
701
701
|
clone.env = clone.env.replace("${i}" /* ELEMENT_REPLACER */, i.toString());
|
|
702
702
|
clone.key[clone.key.findIndex((value) => value === "__element" /* ELEMENT */)] = i.toString();
|
package/package.json
CHANGED