Skip to content

Commit eb72431

Browse files
author
OgabekYuldoshev
committed
chore(release): v0.0.2
1 parent 4c73972 commit eb72431

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

.changeset/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"fixed": [],
66
"linked": [],
77
"access": "public",
8-
"baseBranch": "main",
8+
"baseBranch": "master",
99
"updateInternalDependencies": "patch",
1010
"ignore": []
1111
}

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# sichqon
2+
3+
## 0.0.2
4+
5+
### Patch Changes
6+
7+
- Check second release

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sichqon",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"description": "Create tunnel with your react application",
55
"type": "module",
66
"scripts": {

src/index.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const useIsomorphicLayoutEffect =
1010
typeof window !== "undefined" ? useLayoutEffect : useEffect;
1111

1212
type Listener = () => void;
13-
function createTunnel() {
13+
export function createTunnel() {
1414
let localState: ReactNode[] = [];
1515
let listeners: Listener[] = [];
1616

@@ -45,6 +45,4 @@ function createTunnel() {
4545
return <>{currentState}</>;
4646
},
4747
};
48-
}
49-
50-
export { createTunnel };
48+
}

0 commit comments

Comments
 (0)