Skip to content

Commit 67bb473

Browse files
authored
Merge branch 'main' into fix/loose-fix
2 parents fab6b8e + 9ce72e1 commit 67bb473

File tree

205 files changed

+6652
-5885
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

205 files changed

+6652
-5885
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,9 @@ env:
1111
NODE_OPTIONS: --max_old_space_size=10240
1212
jobs:
1313
check:
14-
runs-on: ubuntu-24.04-arm
14+
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v4
17-
# Workaround for GitHub Actions bug
18-
- name: Enable Corepack
19-
run: corepack enable
2017
- name: Setup node@22
2118
uses: actions/setup-node@v4
2219
with:

.github/workflows/publish.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,12 @@ on:
1717
jobs:
1818
publish:
1919
name: Publish
20-
runs-on: ubuntu-24.04-arm
20+
runs-on: ubuntu-latest
2121
permissions:
2222
contents: read
2323
id-token: write
2424
steps:
2525
- uses: actions/checkout@v4
26-
# Workaround for GitHub Actions bug
27-
- name: Enable Corepack
28-
run: corepack enable
2926
- name: Setup node@20
3027
uses: actions/setup-node@v4
3128
with:

.github/workflows/test.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,9 @@ env:
1111
NODE_OPTIONS: --max_old_space_size=102400
1212
jobs:
1313
test:
14-
runs-on: ubuntu-24.04-arm
14+
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v4
17-
# Workaround for GitHub Actions bug
18-
- name: Enable Corepack
19-
run: corepack enable
2017
- name: Setup node@22
2118
uses: actions/setup-node@v4
2219
with:

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.24.2-next.0
1+
1.24.2-beta.1

cspell.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@
6161
"metas",
6262
"monaspace",
6363
"neovov",
64-
"nextra",
6564
"nocheck",
6665
"noninteractive",
6766
"noto",

eslint.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,14 @@ const enableTypeCheckedRules = {
7878
allowNumber: true,
7979
allowString: false,
8080
}],
81-
} as const;
81+
} satisfies typeof tseslint.configs.disableTypeChecked.rules;
8282

8383
const disableTypeCheckedRules = Object.fromEntries(Object.keys(enableTypeCheckedRules).map((x) => [x, "off"]));
8484

8585
export default tseslint.config(
8686
eslintConfigFlatGitignore(),
8787
{
8888
extends: [
89-
// @ts-expect-error - TODO: make types compatible
9089
eslintMarkdown.configs.recommended,
9190
],
9291
files: GLOB_MD,
@@ -169,6 +168,7 @@ export default tseslint.config(
169168
"@typescript-eslint/ban-types": "off",
170169
"@typescript-eslint/consistent-type-imports": "error",
171170
"@typescript-eslint/explicit-function-return-type": "off",
171+
"@typescript-eslint/no-namespace": "off",
172172
"@typescript-eslint/no-empty-object-type": "off",
173173
"@typescript-eslint/no-misused-promises": "off",
174174
"@typescript-eslint/no-unnecessary-parameter-property-assignment": "warn",

examples/dual-react-dom-lib/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@
3030
},
3131
"devDependencies": {
3232
"@eslint-react/eslint-plugin": "^1.24.1",
33-
"@eslint/js": "^9.18.0",
33+
"@eslint/js": "^9.19.0",
3434
"@tsconfig/node22": "^22.0.0",
3535
"@tsconfig/strictest": "^2.0.5",
36-
"@types/node": "^22.10.7",
37-
"@types/react": "^19.0.7",
38-
"eslint": "^9.18.0",
36+
"@types/node": "^22.10.10",
37+
"@types/react": "^19.0.8",
38+
"eslint": "^9.19.0",
3939
"eslint-plugin-react-hooks": "^5.1.0",
4040
"eslint-plugin-vitest": "^0.5.4",
4141
"react": "^19.0.0",
42-
"tsup": "^8.3.5",
42+
"tsup": "^8.3.6",
4343
"typescript": "^5.7.3",
4444
"typescript-eslint": "^8.21.0"
4545
},

examples/next-app/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,25 @@
1111
"dependencies": {
1212
"@radix-ui/react-dropdown-menu": "2.1.4",
1313
"@radix-ui/react-icons": "1.3.2",
14-
"next": "latest",
15-
"react": "latest",
16-
"react-dom": "latest"
14+
"next": "^15.1.6",
15+
"react": "^19.0.0",
16+
"react-dom": "^19.0.0"
1717
},
1818
"devDependencies": {
1919
"@eslint-react/eslint-plugin": "^1.24.1",
2020
"@eslint/config-inspector": "^1.0.0",
21-
"@eslint/js": "^9.18.0",
22-
"@next/eslint-plugin-next": "^15.1.5",
21+
"@eslint/js": "^9.19.0",
22+
"@next/eslint-plugin-next": "^15.1.6",
2323
"@types/negotiator": "^0.6.3",
24-
"@types/node": "^22.10.7",
25-
"@types/react": "^19.0.7",
24+
"@types/node": "^22.10.10",
25+
"@types/react": "^19.0.8",
2626
"@types/react-dom": "^19.0.3",
27-
"autoprefixer": "10.4.20",
28-
"eslint": "^9.18.0",
27+
"autoprefixer": "^10.4.20",
28+
"eslint": "^9.19.0",
2929
"eslint-config-flat-gitignore": "^1.0.0",
3030
"eslint-plugin-react-hooks": "^5.1.0",
3131
"eslint-plugin-react-refresh": "^0.4.18",
32-
"postcss": "8.5.1",
32+
"postcss": "^8.5.1",
3333
"tailwindcss": "3.4.17",
3434
"typescript": "^5.7.3",
3535
"typescript-eslint": "^8.21.0"

examples/vite-react-dom-app/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
"devDependencies": {
1818
"@eslint-react/eslint-plugin": "^1.24.1",
1919
"@eslint/config-inspector": "^1.0.0",
20-
"@eslint/js": "^9.18.0",
20+
"@eslint/js": "^9.19.0",
2121
"@tsconfig/node22": "^22.0.0",
2222
"@tsconfig/strictest": "^2.0.5",
23-
"@types/react": "^19.0.7",
23+
"@types/react": "^19.0.8",
2424
"@types/react-dom": "^19.0.3",
2525
"@vitejs/plugin-react": "^4.3.4",
26-
"eslint": "^9.18.0",
26+
"eslint": "^9.19.0",
2727
"eslint-plugin-react-hooks": "^5.1.0",
2828
"eslint-plugin-react-refresh": "^0.4.18",
2929
"typescript": "^5.7.3",

examples/vite-react-dom-js-app/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
"devDependencies": {
1818
"@eslint-react/eslint-plugin": "^1.24.1",
1919
"@eslint/config-inspector": "^1.0.0",
20-
"@eslint/js": "^9.18.0",
21-
"@types/react": "^19.0.7",
20+
"@eslint/js": "^9.19.0",
21+
"@types/react": "^19.0.8",
2222
"@types/react-dom": "^19.0.3",
2323
"@vitejs/plugin-react": "^4.3.4",
24-
"eslint": "^9.18.0",
24+
"eslint": "^9.19.0",
2525
"eslint-plugin-react-hooks": "^5.1.0",
2626
"eslint-plugin-react-refresh": "^0.4.18",
2727
"globals": "^15.14.0",

0 commit comments

Comments
 (0)