@wrnrlr/prelude 0.2.21 → 0.2.22

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/mod.ts +1 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wrnrlr/prelude",
3
3
  "type": "module",
4
- "version": "0.2.21",
4
+ "version": "0.2.22",
5
5
  "author": "Werner Laurensse",
6
6
  "description": "A signal based frontend library with fine-grained reactivity",
7
7
  "main": "./src/mod.ts",
package/src/mod.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export type {Getter,Setter,Signal} from './reactive.ts'
2
- export {signal,effect,untrack,batch,memo,root,context,useContext,wrap,fuse,onMount,onCleanup,renderEffect} from './reactive.ts'
2
+ export {signal,effect,untrack,batch,memo,root,children,context,useContext,wrap,fuse,onMount,onCleanup,renderEffect} from './reactive.ts'
3
3
  export {nbsp} from './constants.ts'
4
4
  export {List} from './list.ts'
5
5
  export {Show} from './show.ts'