@cenk1cenk2/oclif-common 3.1.0-beta.4 → 3.1.0-beta.5
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
|
@@ -688,7 +688,7 @@ var ConfigService = class {
|
|
|
688
688
|
await Promise.all(
|
|
689
689
|
parsed.map(async (variable) => {
|
|
690
690
|
let data;
|
|
691
|
-
if (variable.key.includes("__element" /* ELEMENT */)) {
|
|
691
|
+
if (variable.key.length && variable.key.includes("__element" /* ELEMENT */)) {
|
|
692
692
|
const timeout = 6e4;
|
|
693
693
|
const startedAt = Date.now();
|
|
694
694
|
for (let i = 0; i < Infinity; i++) {
|
package/package.json
CHANGED