Skip to content

Commit 5e1493d

Browse files
committed
chore: update deps
1 parent 5e56cfa commit 5e1493d

File tree

35 files changed

+206
-325
lines changed

35 files changed

+206
-325
lines changed

.pkgs/configs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@stylistic/eslint-plugin": "^5.3.1",
2424
"eslint-plugin-de-morgan": "^1.3.1",
2525
"eslint-plugin-function": "^0.0.26",
26-
"eslint-plugin-jsdoc": "^56.1.2",
26+
"eslint-plugin-jsdoc": "^57.0.8",
2727
"eslint-plugin-perfectionist": "^4.15.0",
2828
"eslint-plugin-regexp": "^2.10.0",
2929
"eslint-plugin-unicorn": "^61.0.2",

.pkgs/eslint-plugin-local/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"@typescript-eslint/types": "^8.43.0",
3434
"@typescript-eslint/utils": "^8.43.0",
3535
"eslint-plugin-de-morgan": "^1.3.1",
36-
"eslint-plugin-jsdoc": "^56.1.2",
36+
"eslint-plugin-jsdoc": "^57.0.8",
3737
"eslint-plugin-perfectionist": "^4.15.0",
3838
"eslint-plugin-regexp": "^2.10.0",
3939
"eslint-plugin-unicorn": "^61.0.2",

.pkgs/eslint-plugin-local/src/rules/prefer-eqeq-nullish-comparison.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import type { RuleContext, RuleFeature } from "@eslint-react/kit";
44
import { AST_NODE_TYPES as T } from "@typescript-eslint/utils";
5-
import { nullThrows, NullThrowsReasons, type RuleListener } from "@typescript-eslint/utils/eslint-utils";
5+
import { NullThrowsReasons, type RuleListener, nullThrows } from "@typescript-eslint/utils/eslint-utils";
66

77
import { createRule } from "../utils";
88

apps/website/components/ui/Toast.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { cn } from "#/lib/cn";
22
import { Cross2Icon } from "@radix-ui/react-icons";
33
import * as ToastPrimitives from "@radix-ui/react-toast";
4-
import { cva, type VariantProps } from "class-variance-authority";
4+
import { type VariantProps, cva } from "class-variance-authority";
55
import * as React from "react";
66

77
const ToastProvider = ToastPrimitives.Provider;

apps/website/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"@tsconfig/strictest": "^2.0.5",
5050
"@types/hast": "^3.0.4",
5151
"@types/mdx": "^2.0.13",
52-
"@types/node": "^24.3.3",
52+
"@types/node": "^24.4.0",
5353
"@types/react": "^19.1.13",
5454
"@types/react-dom": "^19.1.9",
5555
"autoprefixer": "^10.4.21",

dprint.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"indentWidth": 2,
55
"quoteStyle": "preferDouble",
66
"quoteProps": "asNeeded",
7-
"importDeclaration.sortNamedImports": "caseInsensitive",
8-
"exportDeclaration.sortNamedExports": "caseInsensitive",
9-
"module.sortImportDeclarations": "caseInsensitive",
10-
"module.sortExportDeclarations": "caseInsensitive"
7+
"importDeclaration.sortNamedImports": "caseSensitive",
8+
"exportDeclaration.sortNamedExports": "caseSensitive",
9+
"module.sortImportDeclarations": "caseSensitive",
10+
"module.sortExportDeclarations": "caseSensitive"
1111
},
1212
"json": {
1313
"indentWidth": 2
@@ -30,6 +30,6 @@
3030
"https://plugins.dprint.dev/markdown-0.19.0.wasm",
3131
"https://plugins.dprint.dev/toml-0.7.0.wasm",
3232
"https://plugins.dprint.dev/g-plane/pretty_yaml-v0.5.1.wasm",
33-
"https://plugins.dprint.dev/g-plane/markup_fmt-v0.23.3.wasm"
33+
"https://plugins.dprint.dev/g-plane/markup_fmt-v0.23.4.wasm"
3434
]
3535
}

eslint.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ import url from "node:url";
22

33
import markdown from "@eslint/markdown";
44
import {
5-
disableTypeChecked,
65
GLOB_CONFIGS,
76
GLOB_IGNORES,
87
GLOB_MD,
98
GLOB_SCRIPTS,
109
GLOB_TESTS,
1110
GLOB_TS,
11+
disableTypeChecked,
1212
strictTypeChecked,
1313
} from "@local/configs/eslint";
1414
import pluginLocal from "@local/eslint-plugin-local";

examples/next/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@tsconfig/next": "^2.0.3",
2323
"@tsconfig/node22": "^22.0.2",
2424
"@tsconfig/strictest": "^2.0.5",
25-
"@types/node": "^24.3.3",
25+
"@types/node": "^24.4.0",
2626
"@types/react": "^19.1.13",
2727
"@types/react-dom": "^19.1.9",
2828
"eslint": "^9.35.0",

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@
6262
"@radix-ui/react-toast": "^1.2.15",
6363
"@tsconfig/node22": "^22.0.2",
6464
"@tsconfig/strictest": "^2.0.5",
65-
"@types/node": "^24.3.3",
65+
"@types/node": "^24.4.0",
6666
"@types/react": "^19.1.13",
6767
"@types/react-dom": "^19.1.9",
6868
"@typescript-eslint/parser": "^8.43.0",
6969
"@typescript-eslint/rule-tester": "^8.43.0",
7070
"@typescript-eslint/types": "^8.43.0",
7171
"ansis": "^4.1.0",
7272
"dedent": "^1.7.0",
73-
"dprint": "^0.50.1",
73+
"dprint": "^0.50.2",
7474
"effect": "^3.17.13",
7575
"eslint": "^9.35.0",
7676
"eslint-config-flat-gitignore": "^2.1.0",
@@ -85,21 +85,21 @@
8585
"react-dom": "^19.1.1",
8686
"remark-frontmatter": "5.0.0",
8787
"remark-gfm": "^4.0.1",
88-
"skott": "^0.35.5",
88+
"skott": "^0.35.6",
8989
"sort-package-json": "^3.4.0",
9090
"tinyglobby": "^0.2.15",
9191
"ts-pattern": "^5.8.0",
9292
"tsdown": "^0.15.1",
9393
"tsx": "^4.20.5",
94-
"type-fest": "^4.41.0",
95-
"typedoc": "^0.28.12",
94+
"type-fest": "^5.0.0",
95+
"typedoc": "^0.28.13",
9696
"typedoc-plugin-markdown": "^4.8.1",
9797
"typedoc-plugin-mdn-links": "^5.0.9",
9898
"typescript": "^5.9.2",
9999
"typescript-eslint": "^8.43.0",
100100
"vitest": "^3.2.4"
101101
},
102-
"packageManager": "[email protected].0",
102+
"packageManager": "[email protected].1",
103103
"engines": {
104104
"node": ">=20.19.0"
105105
},

packages/core/src/component/component-definition.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as AST from "@eslint-react/ast";
22
import { type RuleContext } from "@eslint-react/kit";
33
import { AST_NODE_TYPES as T } from "@typescript-eslint/types";
4-
import { isMatching, P } from "ts-pattern";
4+
import { P, isMatching } from "ts-pattern";
55
import { isChildrenOfCreateElement } from "./component-children";
66
import { ComponentDetectionHint } from "./component-detection-hint";
77
import { isClassComponent } from "./component-is";

0 commit comments

Comments
 (0)