octane 0.1.3 → 0.1.5

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 CHANGED
@@ -6,9 +6,11 @@
6
6
 
7
7
  Octane is a fast, TypeScript-first UI framework, and the successor to
8
8
  [Inferno](https://github.com/infernojs/inferno). It gives you the React API you
9
- already know, a compiler that keeps the runtime small and fast, and no rules of
10
- hooks, so you can call hooks conditionally. This package ships both the runtime
11
- and the compiler, with the compiler exposed at `octane/compiler`.
9
+ already know, a compiler that keeps the runtime small and fast, no rules of
10
+ hooks, and no hand-maintained dependency arrays in the common case. Omit a hook's
11
+ dependency list and the compiler derives it from the closure; explicit arrays
12
+ retain React semantics, while `null` means every render. This package ships both
13
+ the runtime and compiler, with the compiler exposed at `octane/compiler`.
12
14
 
13
15
  For the full story, see the
14
16
  [main README](https://github.com/octanejs/octane#readme).