@codelia/config 0.1.26 → 0.1.28
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/README.md +5 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,12 +47,11 @@ const effective = configRegistry.resolve([config]);
|
|
|
47
47
|
|
|
48
48
|
## Where config.json is loaded
|
|
49
49
|
|
|
50
|
-
Current behavior:
|
|
51
|
-
- Global config
|
|
52
|
-
-
|
|
50
|
+
Current behavior (runtime/CLI integration path):
|
|
51
|
+
- Global config + project config are both supported.
|
|
52
|
+
- Global config path is resolved in runtime/CLI.
|
|
53
53
|
- `CODELIA_CONFIG_PATH` overrides the global config file location.
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
- Project config at `.codelia/config.json` (repo-local override).
|
|
54
|
+
- Project config is loaded from `.codelia/config.json` under the working directory.
|
|
55
|
+
- Effective config is resolved by merging defaults + global + project (project wins on conflicts).
|
|
57
56
|
|
|
58
57
|
See `docs/specs/storage-layout.md` for the default global path (home/XDG).
|