@intentic/state-resolver 1.27.1 → 1.28.1
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 +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ The **state resolver**: turns an `IntentSet` into the desired state — a `Desir
|
|
|
6
6
|
|
|
7
7
|
- Resolve needs to concrete catalog options (Forgejo for git+registry, Komodo for control, Cloudflare for domain, GitHub/GHCR as the alternative stack).
|
|
8
8
|
- Emit the `ResolvedNode`s for each assignment and `compile` them into a single dependency-ordered graph (`resolveState`).
|
|
9
|
-
- Derive the control-plane platform and the application-plane support stack (repos, CI, deployments, tunnel, routes, workspace
|
|
9
|
+
- Derive the control-plane platform and the application-plane support stack (repos, CI, deployments, tunnel, routes, workspace sandbox).
|
|
10
10
|
- It does **not** talk to infra or reconcile — it only produces the serializable artifact.
|
|
11
11
|
|
|
12
12
|
## Key files
|
|
@@ -14,7 +14,7 @@ The **state resolver**: turns an `IntentSet` into the desired state — a `Desir
|
|
|
14
14
|
- [src/state.ts](src/state.ts) — `resolveState`: intent → `DesiredStateGraph`.
|
|
15
15
|
- [src/catalog.ts](src/catalog.ts) — `defaultCatalog`, `Catalog`/`Option` (what satisfies each capability).
|
|
16
16
|
- [src/emit.ts](src/emit.ts) — `emit` + `Assignment` (build the nodes for one assignment); `emit-github.ts` for the GitHub stack.
|
|
17
|
-
- [src/platform.ts](src/platform.ts) / [src/app.ts](src/app.ts) / [src/route.ts](src/route.ts) / [src/workspace.ts](src/workspace.ts) — per-area node derivation (control plane, app plane, DNS routes, dev workspace
|
|
17
|
+
- [src/platform.ts](src/platform.ts) / [src/app.ts](src/app.ts) / [src/route.ts](src/route.ts) / [src/workspace.ts](src/workspace.ts) — per-area node derivation (control plane, app plane, DNS routes, dev workspace sandbox).
|
|
18
18
|
- [src/ids.ts](src/ids.ts) / [src/identity.ts](src/identity.ts) — id helpers, `adminUsername`.
|
|
19
19
|
|
|
20
20
|
## How it fits
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intentic/state-resolver",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.28.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"tslib": "2.8.1",
|
|
34
|
-
"@intentic/graph": "1.
|
|
35
|
-
"@intentic/need-resolver": "1.
|
|
36
|
-
"@intentic/resources": "1.
|
|
34
|
+
"@intentic/graph": "1.28.1",
|
|
35
|
+
"@intentic/need-resolver": "1.28.1",
|
|
36
|
+
"@intentic/resources": "1.28.1"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"typescript": "5.9.3",
|