Skip to content

Commit 89f68a5

Browse files
authored
change version with trivial code change (#34)
1 parent 2af33cc commit 89f68a5

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "reactive-kit",
3-
"version": "0.2.3",
3+
"version": "0.2.4",
44
"main": "./src/index.ts",
55
"files": [
66
"dist/**/*",

src/index.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
// components
12
export { Separated } from './components/Separated/index.ts';
23
export { SwitchCase } from './components/SwitchCase/index.ts';
4+
5+
// hooks
36
export { useAsyncEffect } from './hooks/useAsyncEffect/index.ts';
47
export { useBooleanState } from './hooks/useBooleanState/index.ts';
58
export { useCallbackOnce } from './hooks/useCallbackOnce/index.ts';
@@ -13,5 +16,7 @@ export { useStorageState } from './hooks/useStorageState/index.ts';
1316
export { useTimeout } from './hooks/useTimeout/index.ts';
1417
export { useToggle } from './hooks/useToggle/index.ts';
1518
export { useVisibilityEvent } from './hooks/useVisibilityEvent/index.ts';
19+
20+
// utils
1621
export { buildContext } from './utils/buildContext/index.ts';
1722
export { mergeRefs } from './utils/mergeRefs/index.ts';

0 commit comments

Comments
 (0)