@codelia/config 0.1.25 → 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.
Files changed (2) hide show
  1. package/README.md +5 -6
  2. 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 only.
52
- - Path is resolved in CLI/runtime.
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
- Planned:
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).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codelia/config",
3
- "version": "0.1.25",
3
+ "version": "0.1.28",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"