@solid-cli/reactivity
Advanced tools
Comparing version 0.0.7 to 0.0.8
{ | ||
"name": "@solid-cli/reactivity", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"description": "The minimal, eager reactive system that powers the Solid CLI", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
import { Computation, Getter, Signal, batch, runWithListener } from "../core"; | ||
export { batch, getListener } from "../core"; | ||
export { batch, getListener, type Getter, type Setter, type Signal } from "../core"; | ||
type OnOptions = { defer: boolean }; | ||
@@ -4,0 +4,0 @@ export function on<T, G>(deps: Getter<G>, fn: (val: G) => T, options?: OnOptions): () => T | undefined; |
{ | ||
"compilerOptions": { | ||
"target": "ES2020", | ||
"target": "ESNext", | ||
"useDefineForClassFields": true, | ||
"module": "ESNext", | ||
"lib": ["ES2020", "DOM", "DOM.Iterable"], | ||
"skipLibCheck": true, | ||
@@ -8,0 +7,0 @@ "declaration": true, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
39390
770