Skip to content

Commit

Permalink
v1.3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishiv committed Oct 16, 2024
1 parent 9687448 commit 3282364
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alfama",
"version": "1.3.10",
"version": "1.3.11",
"author": "Abhishiv Saxena<abhishiv@gmail.com>",
"license": "MIT",
"description": "Fine-grained reactive library with no compiler, no magic, and no virtual DOM",
Expand Down
21 changes: 19 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
export * from "./dom";
export {
component,
h,
render,
unrender,
Fragment,
ParentWireContext,
defineContext,
} from "./dom";
export type * from "./dom";
export * from "./core/state";
export {
createSignal,
createWire,
createStore,
createComputedSignal,
produce,
reify,
getProxyMeta,
} from "./core/state";
export type * from "./core/state";
export * from "./stdlib/index";
export * from "./utils/index";

Expand Down

0 comments on commit 3282364

Please sign in to comment.