abler-api 0.1.32 → 0.1.35
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/cjs/pp-util.js +8 -1
- package/dist/es/pp-util.js +8 -1
- package/package.json +1 -1
package/dist/cjs/pp-util.js
CHANGED
|
@@ -1597,7 +1597,14 @@ async function checkExEnvSetting(loadjs) {
|
|
|
1597
1597
|
}
|
|
1598
1598
|
}
|
|
1599
1599
|
|
|
1600
|
-
|
|
1600
|
+
let msg = await createEnvSettingFile(fileName, envSettingEx);
|
|
1601
|
+
|
|
1602
|
+
if (!msg) {
|
|
1603
|
+
delete require.cache[fileName];
|
|
1604
|
+
ppUtil$3.importExEnvSetting(conf$2._envSetting, fileName, loadjs);
|
|
1605
|
+
}
|
|
1606
|
+
|
|
1607
|
+
return msg;
|
|
1601
1608
|
}
|
|
1602
1609
|
}
|
|
1603
1610
|
} // async function checkDatabase() {
|
package/dist/es/pp-util.js
CHANGED
|
@@ -1584,7 +1584,14 @@ async function checkExEnvSetting(loadjs) {
|
|
|
1584
1584
|
}
|
|
1585
1585
|
}
|
|
1586
1586
|
|
|
1587
|
-
|
|
1587
|
+
let msg = await createEnvSettingFile(fileName, envSettingEx);
|
|
1588
|
+
|
|
1589
|
+
if (!msg) {
|
|
1590
|
+
delete require.cache[fileName];
|
|
1591
|
+
ppUtil$3.importExEnvSetting(conf$2._envSetting, fileName, loadjs);
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
return msg;
|
|
1588
1595
|
}
|
|
1589
1596
|
}
|
|
1590
1597
|
} // async function checkDatabase() {
|