@arc-js/config-manager 0.0.7 → 0.0.9
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/core/ConfigService.js +2 -0
- package/package.json +1 -1
package/core/ConfigService.js
CHANGED
|
@@ -109,7 +109,9 @@ class ConfigService {
|
|
|
109
109
|
loadAllConfigs() {
|
|
110
110
|
return __awaiter(this, void 0, void 0, function* () {
|
|
111
111
|
const base = yield loadBaseConfig();
|
|
112
|
+
console.log('Base config loaded:', base);
|
|
112
113
|
const modules = yield loadModulesConfigs();
|
|
114
|
+
console.log('Modules configs loaded:', modules);
|
|
113
115
|
this.resources = modules.reduce((acc, { moduleName, config }) => {
|
|
114
116
|
return mergeDeep(acc, { [moduleName]: config });
|
|
115
117
|
}, { base });
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.0.
|
|
6
|
+
"version": "0.0.9",
|
|
7
7
|
"description": "CONFIG-MANAGER est un système de gestion de configuration modulaire pour les applications React avec TypeScript/JavaScript. Il fournit une gestion centralisée des configurations, un chargement dynamique des modules, et une intégration transparente avec les variables d'environnement.",
|
|
8
8
|
"main": "index.js",
|
|
9
9
|
"keywords": [],
|