Skip to content

Commit 7a39840

Browse files
zrosenbauerclaude
andauthored
chore(deps): upgrade 23 packages to latest (#81)
* chore(deps): upgrade 23 packages to latest Co-Authored-By: Claude <noreply@anthropic.com> * chore(deps): add empty changeset Co-Authored-By: Claude <noreply@anthropic.com> * fix(review): address PR #81 feedback - Downgrade @types/vscode to match engines.vscode floor - Bump @types/react in cli to align with react runtime - Align ui peerDependencies react floor with devDependencies Co-Authored-By: Claude <noreply@anthropic.com> * fix(ci): add type parameters to vi.fn() calls for oxlint 1.59 Co-Authored-By: Claude <noreply@anthropic.com> --------- Co-authored-by: Claude <noreply@anthropic.com>
1 parent b51d629 commit 7a39840

13 files changed

Lines changed: 2016 additions & 1505 deletions

File tree

.changeset/upgrade-deps.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,25 +32,25 @@
3232
"devDependencies": {
3333
"@changesets/cli": "^2.30.0",
3434
"@iconify-json/catppuccin": "^1.2.17",
35-
"@iconify-json/devicon": "^1.2.61",
36-
"@iconify-json/logos": "^1.2.10",
37-
"@iconify-json/material-icon-theme": "^1.2.56",
35+
"@iconify-json/devicon": "^1.2.62",
36+
"@iconify-json/logos": "^1.2.11",
37+
"@iconify-json/material-icon-theme": "^1.2.58",
3838
"@iconify-json/mdi": "^1.2.3",
3939
"@iconify-json/pixelarticons": "^1.2.4",
40-
"@iconify-json/simple-icons": "^1.2.75",
40+
"@iconify-json/simple-icons": "^1.2.77",
4141
"@iconify-json/skill-icons": "^1.2.4",
4242
"@iconify-json/vscode-icons": "^1.2.45",
43-
"@microsoft/api-extractor": "^7.57.7",
44-
"@types/node": "^25.5.0",
43+
"@microsoft/api-extractor": "^7.58.1",
44+
"@types/node": "^25.5.2",
4545
"@typescript/native-preview": "catalog:",
4646
"eslint-plugin-functional": "^9.0.4",
47-
"eslint-plugin-jsdoc": "^62.8.0",
47+
"eslint-plugin-jsdoc": "^62.9.0",
4848
"eslint-plugin-security": "^4.0.0",
49-
"laufen": "^1.2.1",
50-
"oxfmt": "^0.41.0",
51-
"oxlint": "^1.56.0",
49+
"laufen": "^1.3.1",
50+
"oxfmt": "^0.44.0",
51+
"oxlint": "^1.59.0",
5252
"rimraf": "^6.1.3",
53-
"turbo": "^2.8.20",
53+
"turbo": "^2.9.5",
5454
"typescript": "catalog:",
5555
"vitest": "catalog:"
5656
},

packages/cli/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"typecheck": "tsgo --noEmit"
4242
},
4343
"dependencies": {
44-
"@kidd-cli/core": "^0.22.1",
44+
"@kidd-cli/core": "^0.23.0",
4545
"@rspress/core": "catalog:",
4646
"@zpress/core": "workspace:*",
4747
"@zpress/templates": "workspace:*",
@@ -51,13 +51,13 @@
5151
"ink": "^6.8.0",
5252
"ink-big-text": "^2.0.0",
5353
"ink-gradient": "^4.0.0",
54-
"react": "^19.2.0",
54+
"react": "^19.2.5",
5555
"ts-pattern": "catalog:",
5656
"zod": "catalog:"
5757
},
5858
"devDependencies": {
59-
"@kidd-cli/cli": "^0.11.2",
60-
"@types/react": "^19.1.0",
59+
"@kidd-cli/cli": "^0.11.3",
60+
"@types/react": "^19.2.14",
6161
"typescript": "catalog:",
6262
"vitest": "catalog:"
6363
},

packages/cli/src/lib/check.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { ZpressConfig } from '@zpress/core'
22
import { describe, it, expect, vi, beforeEach } from 'vitest'
33

44
vi.mock(import('./rspress.ts'), () => ({
5-
buildSiteForCheck: vi.fn(),
5+
buildSiteForCheck: vi.fn<() => void>(),
66
}))
77

88
const { runConfigCheck, presentResults } = await import('./check.ts')
@@ -16,10 +16,10 @@ const loadError = {
1616
}
1717

1818
const mockLogger = {
19-
success: vi.fn(),
20-
error: vi.fn(),
21-
warn: vi.fn(),
22-
message: vi.fn(),
19+
success: vi.fn<(msg: string) => void>(),
20+
error: vi.fn<(msg: string) => void>(),
21+
warn: vi.fn<(msg: string) => void>(),
22+
message: vi.fn<(msg: string) => void>(),
2323
}
2424

2525
beforeEach(() => {

packages/config/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@
5151
},
5252
"devDependencies": {
5353
"@rslib/core": "catalog:",
54-
"@types/node": "^25.5.0",
54+
"@types/node": "^25.5.2",
5555
"tsx": "^4.21.0",
5656
"typescript": "catalog:",
5757
"vitest": "catalog:",
58-
"zod-to-json-schema": "^3.25.1"
58+
"zod-to-json-schema": "^3.25.2"
5959
},
6060
"engines": {
6161
"node": ">=24.0.0"

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
},
4040
"dependencies": {
4141
"@apidevtools/swagger-parser": "^12.1.0",
42-
"@clack/prompts": "^1.1.0",
42+
"@clack/prompts": "^1.2.0",
4343
"@zpress/config": "workspace:*",
4444
"@zpress/theme": "workspace:*",
4545
"es-toolkit": "catalog:",

packages/core/src/sync/sidebar/landing.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { ResolvedEntry } from '../types'
44

55
vi.mock(import('node:fs/promises'), () => ({
66
default: {
7-
readFile: vi.fn().mockResolvedValue('---\n---\nSome description paragraph'),
7+
readFile: vi.fn<() => Promise<string>>().mockResolvedValue('---\n---\nSome description paragraph'),
88
},
99
}))
1010

packages/core/src/sync/sidebar/sidebar.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { ResolvedEntry } from '../types'
44

55
vi.mock(import('node:fs/promises'), () => ({
66
default: {
7-
readFile: vi.fn().mockResolvedValue('---\n---\nSome description paragraph'),
7+
readFile: vi.fn<() => Promise<string>>().mockResolvedValue('---\n---\nSome description paragraph'),
88
},
99
}))
1010

packages/core/src/sync/text.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { describe, it, expect, vi, beforeEach } from 'vitest'
22

33
vi.mock(import('node:fs/promises'), () => ({
44
default: {
5-
readFile: vi.fn(),
5+
readFile: vi.fn<() => Promise<string>>(),
66
},
77
}))
88

packages/ui/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,19 +49,19 @@
4949
},
5050
"dependencies": {
5151
"@iconify-json/catppuccin": "^1.2.17",
52-
"@iconify-json/devicon": "^1.2.61",
53-
"@iconify-json/logos": "^1.2.10",
54-
"@iconify-json/material-icon-theme": "^1.2.56",
52+
"@iconify-json/devicon": "^1.2.62",
53+
"@iconify-json/logos": "^1.2.11",
54+
"@iconify-json/material-icon-theme": "^1.2.58",
5555
"@iconify-json/mdi": "^1.2.3",
5656
"@iconify-json/pixelarticons": "^1.2.4",
57-
"@iconify-json/simple-icons": "^1.2.75",
57+
"@iconify-json/simple-icons": "^1.2.77",
5858
"@iconify-json/skill-icons": "^1.2.4",
5959
"@iconify-json/vscode-icons": "^1.2.45",
6060
"@iconify/react": "^6.0.2",
6161
"@zpress/config": "workspace:*",
6262
"@zpress/core": "workspace:*",
6363
"@zpress/theme": "workspace:*",
64-
"katex": "^0.16.40",
64+
"katex": "^0.16.45",
6565
"mermaid": "^10.9.5",
6666
"openapi-sampler": "^1.7.2",
6767
"react-aria-components": "^1.16.0",
@@ -75,8 +75,8 @@
7575
"@types/react-dom": "^19.2.3",
7676
"esbuild": "^0.27.4",
7777
"geist": "^1.7.0",
78-
"react": "^19.2.4",
79-
"react-dom": "^19.2.4",
78+
"react": "^19.2.5",
79+
"react-dom": "^19.2.5",
8080
"rspress-plugin-devkit": "^1.0.0",
8181
"rspress-plugin-file-tree": "^1.0.4",
8282
"rspress-plugin-katex": "^1.0.0",
@@ -86,8 +86,8 @@
8686
},
8787
"peerDependencies": {
8888
"@rspress/core": "catalog:",
89-
"react": "^19.2.4",
90-
"react-dom": "^19.2.4"
89+
"react": "^19.2.5",
90+
"react-dom": "^19.2.5"
9191
},
9292
"engines": {
9393
"node": ">=24.0.0"

0 commit comments

Comments
 (0)