octane 0.1.16 → 0.1.18
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 +7 -5
- package/dist/compiler/compile.js +1305 -188
- package/dist/compiler/hook-deps.js +57 -2
- package/dist/devtools-hook.d.ts +1 -1
- package/dist/devtools-hook.js +1 -1
- package/dist/runtime.d.ts +18 -3
- package/dist/runtime.js +230 -56
- package/dist/runtime.server.d.ts +43 -1
- package/dist/runtime.server.js +34 -7
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -9,11 +9,13 @@ Octane is a fast, JavaScript UI framework, and the successor to
|
|
|
9
9
|
already know, a compiler that keeps the runtime small and fast, no rules of
|
|
10
10
|
hooks, and no hand-maintained dependency arrays in the common case. Omit a hook's
|
|
11
11
|
dependency list and the compiler derives it from the closure; explicit arrays
|
|
12
|
-
retain React semantics, while `null` means every render.
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
`
|
|
12
|
+
retain React semantics, while `null` means every render. Built-in hook calls
|
|
13
|
+
retain this inference inside compiler-processed custom hooks, including those in
|
|
14
|
+
plain `.ts`/`.js` modules. Inferring a dependency argument at a call to a custom
|
|
15
|
+
wrapper is narrower: the wrapper must be locally declared in a fully compiled
|
|
16
|
+
`.tsrx`/`.tsx` module and transparently forward its callback and final dependency
|
|
17
|
+
parameter to a supported hook. This package ships both the runtime and compiler,
|
|
18
|
+
with the compiler exposed at `octane/compiler`.
|
|
17
19
|
|
|
18
20
|
For the full story, see the
|
|
19
21
|
[main README](https://github.com/octanejs/octane#readme).
|