Skip to content

Commit 76aeeb6

Browse files
authored
Merge branch 'main' into fix/useeffect-named-function-pattern
2 parents 4809aad + 4b0c59e commit 76aeeb6

32 files changed

+1288
-28
lines changed

.changeset/bright-lions-dance.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'react-simplikit': patch
3+
---
4+
5+
feat(core/hooks): add 'useSet' hook

.changeset/hip-shoes-show.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'react-simplikit': patch
3+
---
4+
5+
docs: Add generic type support to useRefEffect interface

.changeset/late-zoos-join.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'react-simplikit': patch
3+
---
4+
5+
fix: Replace array index keys with child keys in Separated

.changeset/swift-birds-glow.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'react-simplikit': patch
3+
---
4+
5+
feat(core/hooks): add 'useList' hook

.changeset/tall-lions-rush.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'react-simplikit': patch
3+
---
4+
5+
feat(core/hooks): add 'useThrottledCallback' hook

.changeset/twelve-coats-end.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'react-simplikit': patch
3+
---
4+
5+
remove window prefix from setTimeout and clearTimeout for platform-independent

.github/workflows/autofix.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: autofix.ci
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
types: [opened, synchronize, reopened]
8+
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
11+
cancel-in-progress: true
12+
13+
permissions:
14+
contents: read
15+
16+
jobs:
17+
autofix:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
21+
- run: corepack enable
22+
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
23+
with:
24+
node-version-file: '.nvmrc'
25+
cache: 'yarn'
26+
- run: yarn install
27+
- run: yarn prettier --write .
28+
- uses: autofix-ci/action@7a166d7532b277f34e16238930461bf77f9d7ed8

.github/workflows/compressed-size.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
run: corepack enable
1414

1515
- name: Set up Node.js
16-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
16+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
1717
with:
1818
node-version-file: '.nvmrc'
1919
cache: 'yarn'

.github/workflows/integration.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: corepack enable
2424

2525
- name: Set up Node.js
26-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
26+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
2727
with:
2828
node-version-file: '.nvmrc'
2929
cache: 'yarn'
@@ -47,7 +47,7 @@ jobs:
4747
run: corepack enable
4848

4949
- name: Set up Node.js
50-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
50+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
5151
with:
5252
node-version-file: '.nvmrc'
5353
cache: 'yarn'
@@ -79,7 +79,7 @@ jobs:
7979
run: corepack enable
8080

8181
- name: Set up Node.js
82-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
82+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
8383
with:
8484
node-version-file: '.nvmrc'
8585
cache: 'yarn'
@@ -202,7 +202,7 @@ jobs:
202202
run: corepack enable
203203

204204
- name: Set up Node.js
205-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
205+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
206206
with:
207207
node-version-file: '.nvmrc'
208208
cache: 'yarn'

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: corepack enable
2222

2323
- name: Install Node.js
24-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
24+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
2525
with:
2626
node-version-file: '.nvmrc'
2727
cache: 'yarn'
@@ -86,7 +86,7 @@ jobs:
8686
run: corepack enable
8787

8888
- name: Set up Node.js
89-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
89+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
9090
with:
9191
node-version-file: '.nvmrc'
9292
cache: 'yarn'

0 commit comments

Comments
 (0)