Skip to content

Commit bab4cb9

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

File tree

45 files changed

+908
-870
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+908
-870
lines changed

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
hoist-pattern[]=postcss # package/vite
22
hoist-pattern[]=pug # playground/tailwind: @vue/compiler-sfc
3+
hoist-pattern[]=eslint-import-resolver-* # eslint-plugin-import-x
34
shell-emulator=true
45
auto-install-peers=false
56
dedupe-injected-deps=false

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"@types/express": "^4.17.21",
1313
"feed": "^4.2.2",
1414
"vitepress": "^1.6.3",
15-
"vitepress-plugin-group-icons": "^1.3.7",
15+
"vitepress-plugin-group-icons": "^1.5.2",
1616
"vitepress-plugin-llms": "^1.1.0",
1717
"vue": "^3.5.13"
1818
}

eslint.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,15 +220,15 @@ export default tseslint.config(
220220
},
221221
},
222222
{
223-
name: 'playground/test',
224-
files: ['playground/**/__tests__/**/*.?([cm])[jt]s?(x)'],
223+
name: 'tests',
224+
files: ['**/__tests__/**/*.?([cm])[jt]s?(x)'],
225225
rules: {
226226
'n/no-unsupported-features/node-builtins': [
227227
'error',
228228
{
229229
// ideally we would like to allow all experimental features
230230
// https://github.com/eslint-community/eslint-plugin-n/issues/199
231-
ignores: ['fetch'],
231+
ignores: ['fetch', 'import.meta.dirname'],
232232
},
233233
],
234234
},

package.json

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -40,43 +40,43 @@
4040
"ci-docs": "pnpm build && pnpm docs-build"
4141
},
4242
"devDependencies": {
43-
"@eslint/js": "^9.22.0",
43+
"@eslint/js": "^9.24.0",
4444
"@type-challenges/utils": "^0.1.1",
4545
"@types/babel__core": "^7.20.5",
4646
"@types/babel__preset-env": "^7.10.0",
4747
"@types/convert-source-map": "^2.0.3",
4848
"@types/cross-spawn": "^6.0.6",
4949
"@types/debug": "^4.1.12",
50-
"@types/estree": "^1.0.6",
50+
"@types/estree": "^1.0.7",
5151
"@types/etag": "^1.8.3",
5252
"@types/less": "^3.0.8",
5353
"@types/node": "^22.13.6",
5454
"@types/picomatch": "^4.0.0",
5555
"@types/stylus": "^0.48.43",
56-
"@types/ws": "^8.18.0",
57-
"@vitejs/release-scripts": "^1.3.3",
56+
"@types/ws": "^8.18.1",
57+
"@vitejs/release-scripts": "^1.5.0",
5858
"conventional-changelog-cli": "^5.0.0",
59-
"eslint": "^9.22.0",
60-
"eslint-plugin-import-x": "^4.8.0",
61-
"eslint-plugin-n": "^17.16.2",
59+
"eslint": "^9.24.0",
60+
"eslint-plugin-import-x": "^4.10.5",
61+
"eslint-plugin-n": "^17.17.0",
6262
"eslint-plugin-regexp": "^2.7.0",
6363
"execa": "^9.5.2",
6464
"globals": "^16.0.0",
6565
"gsap": "^3.12.7",
66-
"lint-staged": "^15.5.0",
66+
"lint-staged": "^15.5.1",
6767
"picocolors": "^1.1.1",
6868
"playwright-chromium": "^1.50.1",
6969
"premove": "^4.0.0",
7070
"prettier": "3.5.3",
7171
"rollup": "^4.34.9",
7272
"rollup-plugin-esbuild": "^6.2.1",
73-
"simple-git-hooks": "^2.11.1",
73+
"simple-git-hooks": "^2.12.1",
7474
"tslib": "^2.8.1",
7575
"tsx": "^4.19.3",
7676
"typescript": "~5.7.2",
77-
"typescript-eslint": "^8.26.1",
77+
"typescript-eslint": "^8.30.1",
7878
"vite": "workspace:*",
79-
"vitest": "^3.0.8"
79+
"vitest": "^3.1.1"
8080
},
8181
"simple-git-hooks": {
8282
"pre-commit": "pnpm exec lint-staged --concurrent false"
@@ -95,7 +95,7 @@
9595
"eslint --cache --fix"
9696
]
9797
},
98-
"packageManager": "pnpm@10.6.3",
98+
"packageManager": "pnpm@10.8.1",
9999
"pnpm": {
100100
"overrides": {
101101
"vite": "workspace:*"
@@ -104,8 +104,7 @@
104104
105105
106106
107-
108-
107+
109108
},
110109
"peerDependencyRules": {
111110
"allowedVersions": {

packages/create-vite/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ ISC, MIT
152152
## @clack/core, @clack/prompts
153153
License: MIT
154154
By: Nate Moore
155-
Repositories: https://github.com/natemoo-re/clack, https://github.com/natemoo-re/clack
155+
Repositories: git+https://github.com/bombshell-dev/clack.git, git+https://github.com/bombshell-dev/clack.git
156156

157157
> MIT License
158158
>

packages/create-vite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"homepage": "https://github.com/vitejs/vite/tree/main/packages/create-vite#readme",
3434
"funding": "https://github.com/vitejs/vite?sponsor=1",
3535
"devDependencies": {
36-
"@clack/prompts": "^0.10.0",
36+
"@clack/prompts": "^0.10.1",
3737
"cross-spawn": "^7.0.6",
3838
"mri": "^1.2.0",
3939
"picocolors": "^1.1.1",

packages/create-vite/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ function pkgFromUserAgent(userAgent: string | undefined): PkgInfo | undefined {
593593

594594
function setupReactSwc(root: string, isTs: boolean) {
595595
// renovate: datasource=npm depName=@vitejs/plugin-react-swc
596-
const reactSwcPluginVersion = '3.8.0'
596+
const reactSwcPluginVersion = '3.9.0'
597597

598598
editFile(path.resolve(root, 'package.json'), (content) => {
599599
return content.replace(

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"lit": "^3.2.1"
12+
"lit": "^3.3.0"
1313
},
1414
"devDependencies": {
1515
"typescript": "~5.7.2",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"lit": "^3.2.1"
12+
"lit": "^3.3.0"
1313
},
1414
"devDependencies": {
1515
"vite": "^6.3.1"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"preact": "^10.26.4"
12+
"preact": "^10.26.5"
1313
},
1414
"devDependencies": {
1515
"@preact/preset-vite": "^2.10.1",

0 commit comments

Comments
 (0)