Skip to content

Commit 7d96ec8

Browse files
authored
Merge branch 'main' into no-use-in-try-catch
2 parents 2f9779f + f04e82a commit 7d96ec8

File tree

27 files changed

+198
-453
lines changed

27 files changed

+198
-453
lines changed

.pkgs/configs/typedoc.base.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"alphabetical"
1414
],
1515
"plugin": [
16-
"typedoc-plugin-inline-sources",
1716
"typedoc-plugin-markdown",
1817
"typedoc-plugin-mdn-links",
1918
"typedoc-plugin-missing-exports"

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.28.1-beta.2
1+
1.28.1-beta.3

examples/next-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
},
1616
"devDependencies": {
1717
"@eslint-react/eslint-plugin": "workspace:*",
18-
"@eslint/config-inspector": "^1.0.0",
18+
"@eslint/config-inspector": "^1.0.1",
1919
"@eslint/js": "^9.21.0",
2020
"@next/eslint-plugin-next": "^15.2.0",
2121
"@tsconfig/next": "^2.0.3",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717
"devDependencies": {
1818
"@eslint-react/eslint-plugin": "workspace:*",
19-
"@eslint/config-inspector": "^1.0.0",
19+
"@eslint/config-inspector": "^1.0.1",
2020
"@eslint/js": "^9.21.0",
2121
"@tsconfig/node22": "^22.0.0",
2222
"@tsconfig/strictest": "^2.0.5",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717
"devDependencies": {
1818
"@eslint-react/eslint-plugin": "workspace:*",
19-
"@eslint/config-inspector": "^1.0.0",
19+
"@eslint/config-inspector": "^1.0.1",
2020
"@eslint/js": "^9.21.0",
2121
"@types/react": "^19.0.10",
2222
"@types/react-dom": "^19.0.4",

examples/vite-react-dom-js-with-babel-eslint-parser-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@babel/preset-env": "^7.26.9",
2121
"@babel/preset-react": "^7.26.3",
2222
"@eslint-react/eslint-plugin": "workspace:*",
23-
"@eslint/config-inspector": "^1.0.0",
23+
"@eslint/config-inspector": "^1.0.1",
2424
"@eslint/js": "^9.21.0",
2525
"@types/babel__core": "~7.20.5",
2626
"@types/babel__preset-env": "~7.10.0",

examples/vite-react-dom-with-ts-blank-eslint-parser-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"devDependencies": {
1818
"@eslint-react/eslint-plugin": "workspace:*",
1919
"@eslint-react/shared": "workspace:*",
20-
"@eslint/config-inspector": "^1.0.0",
20+
"@eslint/config-inspector": "^1.0.1",
2121
"@eslint/js": "^9.21.0",
2222
"@tsconfig/node22": "^22.0.0",
2323
"@tsconfig/strictest": "^2.0.5",

package.json

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-react/monorepo",
3-
"version": "1.28.1-beta.2",
3+
"version": "1.28.1-beta.3",
44
"private": true,
55
"description": "Monorepo for eslint-plugin-react-[x, dom, web-api, hooks-extra, naming-convention].",
66
"keywords": [
@@ -36,11 +36,10 @@
3636
"format:write": "dprint fmt",
3737
"inspect:deps": "skott -e .ts",
3838
"inspect:eslint-config": "eslint-config-inspector",
39-
"lint": "pnpm run lint:deps && pnpm run lint:publish && pnpm run lint:ts && concurrently \"pnpm run lint:es\"",
39+
"lint": "pnpm run lint:deps && pnpm run lint:publish && pnpm run lint:ts && pnpm run lint:es",
4040
"lint:deps": "skott -m file-tree -e .ts -s",
4141
"lint:es": "eslint . --max-warnings 100",
4242
"lint:examples": "pnpm m -F \"./examples/*\" run lint",
43-
"lint:monorepo": "sherif",
4443
"lint:publish": "pnpm m run lint:publish",
4544
"lint:spell": "cspell lint --relative --no-progress \"**\"",
4645
"lint:ts": "pnpm m run lint:ts",
@@ -53,12 +52,11 @@
5352
"update:website": "tsx ./scripts/update-website.ts"
5453
},
5554
"devDependencies": {
56-
"@eslint/config-inspector": "^1.0.0",
55+
"@eslint/config-inspector": "^1.0.1",
5756
"@eslint/js": "^9.21.0",
5857
"@eslint/markdown": "^6.2.2",
5958
"@local/configs": "workspace:*",
6059
"@local/eslint-plugin-local": "workspace:*",
61-
"@napi-rs/canvas": "^0.1.67",
6260
"@stylistic/eslint-plugin": "^4.1.0",
6361
"@swc/core": "^1.11.1",
6462
"@tsconfig/node22": "^22.0.0",
@@ -69,8 +67,7 @@
6967
"@typescript-eslint/parser": "^8.25.0",
7068
"@typescript-eslint/rule-tester": "^8.25.0",
7169
"@typescript-eslint/types": "^8.25.0",
72-
"@vitest/ui": "^3.0.7",
73-
"concurrently": "^9.1.2",
70+
"ansis": "^3.16.0",
7471
"cspell": "^8.17.5",
7572
"dedent": "^1.5.3",
7673
"dprint": "^0.49.0",
@@ -88,12 +85,9 @@
8885
"lefthook": "^1.11.2",
8986
"markdownlint": "^0.37.4",
9087
"nx": "20.4.2",
91-
"ofetch": "^1.4.1",
92-
"picocolors": "^1.1.1",
9388
"publint": "^0.3.6",
9489
"react": "^19.0.0",
9590
"react-dom": "^19.0.0",
96-
"sherif": "^1.3.0",
9791
"skott": "^0.35.4",
9892
"tinyexec": "^0.3.2",
9993
"tinyglobby": "^0.2.12",
@@ -102,7 +96,6 @@
10296
"tsx": "^4.19.3",
10397
"type-fest": "^4.35.0",
10498
"typedoc": "^0.27.9",
105-
"typedoc-plugin-inline-sources": "^1.2.1",
10699
"typedoc-plugin-markdown": "^4.4.2",
107100
"typedoc-plugin-mdn-links": "^4.0.14",
108101
"typedoc-plugin-missing-exports": "^3.1.0",
@@ -122,18 +115,19 @@
122115
"nx"
123116
],
124117
"overrides": {
125-
"is-core-module": "npm:@socketregistry/is-core-module@^1.0.7",
126-
"safe-buffer": "npm:@socketregistry/safe-buffer@^1.0.6",
127-
"safer-buffer": "npm:@socketregistry/safer-buffer@^1.0.7",
128-
"typedarray": "npm:@socketregistry/typedarray@^1.0.5",
129118
"@types/react": "^19.0.10",
130119
"@types/react-dom": "^19.0.4",
131120
"cross-spawn": "^7.0.6",
132121
"esbuild": "^0.25.0",
133-
"next": "^15.1.7",
122+
"is-core-module": "npm:@socketregistry/is-core-module@^1.0.7",
123+
"lucide-react": "^0.476.0",
124+
"next": "^15.2.0",
134125
"react": "^19.0.0",
135126
"react-dom": "^19.0.0",
127+
"safe-buffer": "npm:@socketregistry/safe-buffer@^1.0.6",
128+
"safer-buffer": "npm:@socketregistry/safer-buffer@^1.0.7",
136129
"ts-api-utils": "^2.0.1",
130+
"typedarray": "npm:@socketregistry/typedarray@^1.0.5",
137131
"typescript": "5.8.1-rc"
138132
}
139133
}

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-react/core",
3-
"version": "1.28.1-beta.2",
3+
"version": "1.28.1-beta.3",
44
"description": "ESLint React's ESLint utility module for static analysis of React core APIs and Patterns.",
55
"homepage": "https://github.com/Rel1cx/eslint-react",
66
"bugs": {

packages/plugins/eslint-plugin-react-debug/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-react-debug",
3-
"version": "1.28.1-beta.2",
3+
"version": "1.28.1-beta.3",
44
"description": "ESLint React's ESLint plugin for debugging related rules.",
55
"keywords": [
66
"react",

0 commit comments

Comments
 (0)