Skip to content

Commit fef682d

Browse files
fix(deps): update all non-major dependencies (#22921)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: sapphi-red <[email protected]>
1 parent 3c345e4 commit fef682d

32 files changed

Lines changed: 673 additions & 871 deletions

File tree

docs/config/shared-options.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,7 @@ export default defineConfig({
282282
globalModulePaths?: RegExp[]
283283
exportGlobals?: boolean
284284
generateScopedName?:
285-
| string
286-
| ((name: string, filename: string, css: string) => string)
285+
string | ((name: string, filename: string, css: string) => string)
287286
hashPrefix?: string
288287
/**
289288
* default: undefined

docs/guide/api-environment-runtimes.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@ function createWorkerdEnvironment(
2626
return mergeConfig(
2727
{
2828
resolve: {
29-
conditions: [
30-
/*...*/
31-
],
29+
conditions: [/*...*/],
3230
},
3331
dev: {
3432
createEnvironment(name, config) {
@@ -251,10 +249,7 @@ interface ModuleRunnerOptions {
251249
* source maps are resolved for files that were not processed by Vite.
252250
*/
253251
sourcemapInterceptor?:
254-
| false
255-
| 'node'
256-
| 'prepareStackTrace'
257-
| InterceptorOptions
252+
false | 'node' | 'prepareStackTrace' | InterceptorOptions
258253
/**
259254
* Disable HMR or configure HMR options.
260255
*

docs/guide/api-plugin.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -375,9 +375,7 @@ Vite plugins can also provide hooks that serve Vite-specific purposes. These hoo
375375
originalUrl?: string
376376
},
377377
) =>
378-
| IndexHtmlTransformResult
379-
| void
380-
| Promise<IndexHtmlTransformResult | void>
378+
IndexHtmlTransformResult | void | Promise<IndexHtmlTransformResult | void>
381379

382380
type IndexHtmlTransformResult =
383381
| string

docs/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
"@iconify/vue": "^5.0.1",
1212
"@shikijs/vitepress-twoslash": "^4.3.1",
1313
"@types/express": "^5.0.6",
14-
"@voidzero-dev/vitepress-theme": "^4.8.4",
14+
"@voidzero-dev/vitepress-theme": "^5.0.2",
1515
"feed": "^6.0.0",
1616
"markdown-it-image-size": "^15.0.1",
1717
"oxc-minify": "^0.139.0",
18-
"vitepress": "^2.0.0-alpha.17",
18+
"vitepress": "^2.0.0-alpha.18",
1919
"vitepress-plugin-graphviz": "^0.1.0",
2020
"vitepress-plugin-group-icons": "^1.7.5",
2121
"vitepress-plugin-llms": "^1.13.2",
2222
"vue": "^3.5.39",
23-
"vue-tsc": "^3.3.6"
23+
"vue-tsc": "^3.3.7"
2424
}
2525
}

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,37 +41,37 @@
4141
"merge-changelog": "tsx scripts/mergeChangelog.ts"
4242
},
4343
"devDependencies": {
44-
"@eslint/js": "^9.39.4",
44+
"@eslint/js": "^9.39.5",
4545
"@type-challenges/utils": "^0.1.1",
4646
"@types/babel__core": "^7.20.5",
4747
"@types/babel__preset-env": "^7.10.0",
4848
"@types/convert-source-map": "^2.0.3",
4949
"@types/cross-spawn": "^6.0.6",
5050
"@types/etag": "^1.8.4",
5151
"@types/less": "^3.0.8",
52-
"@types/node": "^24.13.2",
52+
"@types/node": "^24.13.3",
5353
"@types/picomatch": "^4.0.3",
5454
"@types/stylus": "^0.48.43",
5555
"@types/ws": "^8.18.1",
56-
"@vitejs/release-scripts": "^1.7.1",
57-
"eslint": "^9.39.4",
56+
"@vitejs/release-scripts": "^1.8.0",
57+
"eslint": "^9.39.5",
5858
"eslint-plugin-import-x": "^4.17.1",
59-
"eslint-plugin-n": "^18.2.1",
59+
"eslint-plugin-n": "^18.2.2",
6060
"eslint-plugin-regexp": "^3.1.1",
6161
"execa": "^9.6.1",
6262
"globals": "^17.7.0",
6363
"lint-staged": "^17.0.8",
64-
"oxfmt": "^0.57.0",
64+
"oxfmt": "^0.58.0",
6565
"picocolors": "^1.1.1",
6666
"playwright-chromium": "^1.61.1",
6767
"rolldown": "~1.1.5",
6868
"rollup": "^4.59.0",
6969
"simple-git-hooks": "^2.13.1",
7070
"tsx": "^4.23.0",
7171
"typescript": "~6.0.2",
72-
"typescript-eslint": "^8.62.1",
72+
"typescript-eslint": "^8.63.0",
7373
"vite": "workspace:*",
74-
"vitest": "^4.1.9"
74+
"vitest": "^4.1.10"
7575
},
7676
"simple-git-hooks": {
7777
"pre-commit": "pnpm exec lint-staged --concurrent false"
@@ -90,7 +90,7 @@
9090
"eslint --cache --fix --concurrency auto"
9191
]
9292
},
93-
"packageManager": "[email protected].4",
93+
"packageManager": "[email protected].5",
9494
"stackblitz": {
9595
"startCommand": "pnpm --filter='./packages/vite' run dev"
9696
}

packages/create-vite/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -852,15 +852,15 @@ function setupEslint(root: string, isTs: boolean) {
852852
// renovate: datasource=npm depName=@eslint/js
853853
const eslintJsVersion = '10.0.1'
854854
// renovate: datasource=npm depName=eslint
855-
const eslintVersion = '10.6.0'
855+
const eslintVersion = '10.7.0'
856856
// renovate: datasource=npm depName=eslint-plugin-react-hooks
857857
const eslintPluginReactHooksVersion = '7.1.1'
858858
// renovate: datasource=npm depName=eslint-plugin-react-refresh
859859
const eslintPluginReactRefreshVersion = '0.5.3'
860860
// renovate: datasource=npm depName=globals
861861
const globalsVersion = '17.7.0'
862862
// renovate: datasource=npm depName=typescript-eslint
863-
const typescriptEslintVersion = '8.62.1'
863+
const typescriptEslintVersion = '8.63.0'
864864

865865
const eslintConfigForTS = /* js */ `import js from '@eslint/js'
866866
import globals from 'globals'

packages/create-vite/template-lit-ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
},
1414
"devDependencies": {
1515
"typescript": "~6.0.2",
16-
"vite": "^8.1.3"
16+
"vite": "^8.1.4"
1717
}
1818
}

packages/create-vite/template-lit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
"lit": "^3.3.3"
1313
},
1414
"devDependencies": {
15-
"vite": "^8.1.3"
15+
"vite": "^8.1.4"
1616
}
1717
}

packages/create-vite/template-preact-ts/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"preact": "^10.29.4"
12+
"preact": "^10.29.7"
1313
},
1414
"devDependencies": {
1515
"@preact/preset-vite": "^2.10.5",
16-
"@types/node": "^24.13.2",
16+
"@types/node": "^24.13.3",
1717
"typescript": "~6.0.2",
18-
"vite": "^8.1.3"
18+
"vite": "^8.1.4"
1919
}
2020
}

packages/create-vite/template-preact/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"preact": "^10.29.4"
12+
"preact": "^10.29.7"
1313
},
1414
"devDependencies": {
1515
"@preact/preset-vite": "^2.10.5",
16-
"vite": "^8.1.3"
16+
"vite": "^8.1.4"
1717
}
1818
}

0 commit comments

Comments
 (0)