@exactjs/core 0.5.0 → 0.5.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 +6 -7
- package/package.json +10 -3
package/README.md
CHANGED
|
@@ -4,10 +4,7 @@ Application-authoring primitives and shared runtime contracts for eXact.
|
|
|
4
4
|
|
|
5
5
|
## Overview
|
|
6
6
|
|
|
7
|
-
`@exactjs/core` provides component types, contexts, lifecycle APIs, refs, error boundaries,
|
|
8
|
-
Suspense, function-defined tasks, interactions, and finite component registries. Applications normally combine it with
|
|
9
|
-
`@exactjs/jsx`, an eXact compiler integration, and a renderer such as `@exactjs/dom` or
|
|
10
|
-
`@exactjs/ssr`.
|
|
7
|
+
`@exactjs/core` provides component types, contexts, lifecycle APIs, refs, error boundaries, Suspense, function-defined tasks, interactions, and finite component registries. Applications normally combine it with `@exactjs/jsx`, an eXact compiler integration, and a renderer such as `@exactjs/dom` or `@exactjs/ssr`.
|
|
11
8
|
|
|
12
9
|
An eXact component is a durable instance. Its outer function is a compiler-analyzed definition of
|
|
13
10
|
state defaults, tasks, reactive relationships, and render preparation—not a linearly executed
|
|
@@ -74,6 +71,8 @@ Framework integrations use the `runtime/render`, `runtime/registry`, and
|
|
|
74
71
|
|
|
75
72
|
## Learn more
|
|
76
73
|
|
|
77
|
-
See the [component language](
|
|
78
|
-
[tasks](
|
|
79
|
-
[component registries](
|
|
74
|
+
See the [component language](https://github.com/techjoshua/exact/blob/main/docs/component-language.md),
|
|
75
|
+
[tasks](https://github.com/techjoshua/exact/blob/main/docs/tasks.md), [actions and forms](https://github.com/techjoshua/exact/blob/main/docs/actions-and-forms.md), and
|
|
76
|
+
[component registries](https://github.com/techjoshua/exact/blob/main/docs/component-registries.md) guides.
|
|
77
|
+
|
|
78
|
+
[Documentation](https://techjoshua.github.io/exact/#/learn/components) | [Source on GitHub](https://github.com/techjoshua/exact/tree/main/packages/core)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exactjs/core",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"AGENTS.md",
|
|
@@ -316,8 +316,15 @@
|
|
|
316
316
|
"url": "git+https://github.com/techjoshua/exact.git",
|
|
317
317
|
"directory": "packages/core"
|
|
318
318
|
},
|
|
319
|
-
"homepage": "https://github.
|
|
319
|
+
"homepage": "https://techjoshua.github.io/exact/#/learn/components",
|
|
320
320
|
"bugs": {
|
|
321
321
|
"url": "https://github.com/techjoshua/exact/issues"
|
|
322
|
-
}
|
|
322
|
+
},
|
|
323
|
+
"description": "Application-authoring primitives and shared runtime contracts for eXact.",
|
|
324
|
+
"keywords": [
|
|
325
|
+
"exactjs",
|
|
326
|
+
"web-framework",
|
|
327
|
+
"components",
|
|
328
|
+
"reactivity"
|
|
329
|
+
]
|
|
323
330
|
}
|