@arcforge/cognet 2.0.164 → 2.0.166
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/package.json +3 -3
- package/src/ecs/types.ts +1 -1
- package/src/index.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcforge/cognet",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.166",
|
|
4
4
|
"description": "The cognet authoring surface for Axon — an agent's brain, compiled, versioned and swappable.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"deploy": "echo \"This package is published ONLY by apps/tui/scripts/release.ts, which pins workspace:* deps to concrete versions first. Publishing it directly ships an unresolvable dependency.\" && exit 1"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@arcforge/err": "2.0.
|
|
21
|
-
"@arcforge/types": "2.0.
|
|
20
|
+
"@arcforge/err": "2.0.166",
|
|
21
|
+
"@arcforge/types": "2.0.166",
|
|
22
22
|
"hookable": "^5.5.3"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
package/src/ecs/types.ts
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @arcforge/cognet — the cognet runtime.
|
|
2
2
|
//
|
|
3
3
|
// Everything that executes INSIDE a compiled brain. The kernel that loads the
|
|
4
|
-
// brain lives in @
|
|
4
|
+
// brain lives in @arcforge/core and is private; this is the public half, and it is
|
|
5
5
|
// what the generated entry imports.
|
|
6
6
|
//
|
|
7
7
|
// Root export is deliberately minimal: a cognet cannot exist without the host,
|