Skip to content

Commit c14bd13

Browse files
committed
Remove type-fest from shared package, closes #1306
1 parent 27bb7ca commit c14bd13

File tree

12 files changed

+167
-172
lines changed

12 files changed

+167
-172
lines changed

apps/website/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@eslint-react/eff": "workspace:*",
1414
"bsky-react-post": "^0.1.7",
1515
"clsx": "^2.1.1",
16-
"effect": "^3.19.1",
16+
"effect": "^3.19.2",
1717
"fumadocs-core": "16.0.5",
1818
"fumadocs-docgen": "3.0.3",
1919
"fumadocs-mdx": "13.0.2",
@@ -35,7 +35,7 @@
3535
"@eslint/js": "^9.39.1",
3636
"@local/configs": "workspace:*",
3737
"@mdx-js/mdx": "^3.1.1",
38-
"@tailwindcss/postcss": "^4.1.16",
38+
"@tailwindcss/postcss": "^4.1.17",
3939
"@theguild/remark-mermaid": "^0.3.0",
4040
"@tsconfig/next": "^2.0.3",
4141
"@tsconfig/node22": "^22.0.2",
@@ -52,7 +52,7 @@
5252
"eslint-plugin-react-refresh": "^0.4.24",
5353
"importx": "^0.5.2",
5454
"postcss": "^8.5.6",
55-
"tailwindcss": "^4.1.16",
55+
"tailwindcss": "^4.1.17",
5656
"tailwindcss-animated": "^2.0.0",
5757
"typescript": "^5.9.3",
5858
"typescript-eslint": "^8.46.3"

examples/react-dom-js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"eslint-plugin-react-hooks": "^7.0.1",
2626
"eslint-plugin-react-refresh": "^0.4.24",
2727
"globals": "^16.5.0",
28-
"vite": "^7.2.1"
28+
"vite": "^7.2.2"
2929
},
3030
"engines": {
3131
"node": ">=20.19.0"

examples/react-dom/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"eslint-plugin-react-refresh": "^0.4.24",
3030
"typescript": "^5.9.3",
3131
"typescript-eslint": "^8.46.3",
32-
"vite": "^7.2.1"
32+
"vite": "^7.2.2"
3333
},
3434
"engines": {
3535
"node": ">=20.19.0"

examples/with-babel-eslint-parser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"eslint-plugin-react-web-api": "workspace:*",
3636
"eslint-plugin-react-x": "workspace:*",
3737
"globals": "^16.5.0",
38-
"vite": "^7.2.1"
38+
"vite": "^7.2.2"
3939
},
4040
"engines": {
4141
"node": ">=20.19.0"

examples/with-ts-blank-eslint-parser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"ts-blank-eslint-parser": "^0.4.4",
3333
"typescript": "^5.9.3",
3434
"typescript-eslint": "^8.46.3",
35-
"vite": "^7.2.1"
35+
"vite": "^7.2.2"
3636
},
3737
"engines": {
3838
"node": ">=20.19.0"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"ansis": "^4.2.0",
7272
"dedent": "^1.7.0",
7373
"dprint": "^0.50.2",
74-
"effect": "^3.19.1",
74+
"effect": "^3.19.2",
7575
"eslint": "^9.39.1",
7676
"eslint-plugin-fast-import": "^1.5.3",
7777
"eslint-plugin-vitest": "^0.5.4",

packages/plugins/eslint-plugin-react-x/src/rules/prefer-read-only-props.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ ruleTesterWithTypes.run(RULE_NAME, rule, {
464464
/// <reference types="react-dom" />
465465
466466
import * as React from "react";
467-
import { ReadonlyDeep } from "type-fest";
467+
import type { ReadonlyDeep } from "type-fest";
468468
469469
export const App: React.FC<ReadonlyDeep<{ id: string; className: string }>> = (props) => {
470470
return <div className={props.className} id={props.id} />

packages/shared/docs/functions/coerceESLintSettings.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Function: coerceESLintSettings()
88

9-
> **coerceESLintSettings**(`settings`): `PartialDeep`\<\{ `react-x?`: `unknown`; \} \| `undefined`\>
9+
> **coerceESLintSettings**(`settings`): [`Partial`](https://www.typescriptlang.org/docs/handbook/utility-types.html#partialtype)\<\{ `react-x?`: `unknown`; \} \| `undefined`\>
1010
1111
Coerces unknown input to ESLintSettings type
1212

@@ -20,4 +20,4 @@ The settings object to coerce
2020

2121
## Returns
2222

23-
`PartialDeep`\<\{ `react-x?`: `unknown`; \} \| `undefined`\>
23+
[`Partial`](https://www.typescriptlang.org/docs/handbook/utility-types.html#partialtype)\<\{ `react-x?`: `unknown`; \} \| `undefined`\>

packages/shared/docs/functions/coerceSettings.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Function: coerceSettings()
88

9-
> **coerceSettings**(`settings`): `PartialDeep`\<[`ESLintReactSettings`](../type-aliases/ESLintReactSettings.md)\>
9+
> **coerceSettings**(`settings`): [`Partial`](https://www.typescriptlang.org/docs/handbook/utility-types.html#partialtype)\<[`ESLintReactSettings`](../type-aliases/ESLintReactSettings.md)\>
1010
1111
Coerces unknown input to ESLintReactSettings type
1212

@@ -20,4 +20,4 @@ The settings object to coerce
2020

2121
## Returns
2222

23-
`PartialDeep`\<[`ESLintReactSettings`](../type-aliases/ESLintReactSettings.md)\>
23+
[`Partial`](https://www.typescriptlang.org/docs/handbook/utility-types.html#partialtype)\<[`ESLintReactSettings`](../type-aliases/ESLintReactSettings.md)\>

packages/shared/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@
4646
"@local/configs": "workspace:*",
4747
"@tsconfig/node22": "^22.0.2",
4848
"@types/picomatch": "^4.0.2",
49-
"tsdown": "^0.16.0",
50-
"type-fest": "^5.2.0"
49+
"tsdown": "^0.16.0"
5150
},
5251
"engines": {
5352
"node": ">=20.19.0"

0 commit comments

Comments
 (0)