Skip to content

Commit 10f1e32

Browse files
committed
modify github token to PAT
1 parent 89f68a5 commit 10f1e32

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

.github/workflows/deployment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ jobs:
7878
run: |
7979
git push -u origin HEAD --follow-tags --force
8080
env:
81-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
81+
GITHUB_TOKEN: ${{ secrets.TOSS_REACTIVE_KIT_GITHUB_ACCESS_TOKEN }}

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.4",
3+
"version": "0.2.5",
44
"main": "./src/index.ts",
55
"files": [
66
"dist/**/*",

src/index.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
// components
21
export { Separated } from './components/Separated/index.ts';
32
export { SwitchCase } from './components/SwitchCase/index.ts';
4-
5-
// hooks
63
export { useAsyncEffect } from './hooks/useAsyncEffect/index.ts';
74
export { useBooleanState } from './hooks/useBooleanState/index.ts';
85
export { useCallbackOnce } from './hooks/useCallbackOnce/index.ts';
@@ -16,7 +13,5 @@ export { useStorageState } from './hooks/useStorageState/index.ts';
1613
export { useTimeout } from './hooks/useTimeout/index.ts';
1714
export { useToggle } from './hooks/useToggle/index.ts';
1815
export { useVisibilityEvent } from './hooks/useVisibilityEvent/index.ts';
19-
20-
// utils
2116
export { buildContext } from './utils/buildContext/index.ts';
2217
export { mergeRefs } from './utils/mergeRefs/index.ts';

0 commit comments

Comments
 (0)