Skip to content

Commit b2b559d

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

15 files changed

Lines changed: 1209 additions & 1102 deletions

File tree

.github/workflows/zizmor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ jobs:
2727
persist-credentials: false
2828

2929
- name: Run zizmor 🌈
30-
uses: zizmorcore/zizmor-action@192e21d79ab29983730a13d1382995c2307fbcaa # v0.5.7
30+
uses: zizmorcore/zizmor-action@6599ee8b7a49aef6a770f63d261d214911a7ce02 # v0.6.0

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -40,26 +40,26 @@
4040
"@types/babel__core": "^7.20.5",
4141
"@types/convert-source-map": "^2.0.3",
4242
"@types/fs-extra": "^11.0.4",
43-
"@types/node": "^24.13.2",
44-
"@typescript/native-preview": "7.0.0-dev.20260630.1",
43+
"@types/node": "^24.13.3",
44+
"@typescript/native-preview": "7.0.0-dev.20260707.2",
4545
"@vitejs/release-scripts": "^1.8.0",
46-
"eslint": "^10.6.0",
46+
"eslint": "^10.7.0",
4747
"eslint-import-resolver-typescript": "^4.4.5",
4848
"eslint-plugin-import-x": "^4.17.1",
49-
"eslint-plugin-n": "^18.2.1",
49+
"eslint-plugin-n": "^18.2.2",
5050
"eslint-plugin-regexp": "^3.1.1",
5151
"execa": "^9.6.1",
5252
"fs-extra": "^11.3.6",
53-
"lint-staged": "^17.0.8",
54-
"oxfmt": "^0.57.0",
53+
"lint-staged": "^17.1.1",
54+
"oxfmt": "^0.60.0",
5555
"picocolors": "^1.1.1",
5656
"playwright-chromium": "^1.61.1",
5757
"simple-git-hooks": "^2.13.1",
58-
"tsx": "^4.22.4",
58+
"tsx": "^4.23.1",
5959
"typescript": "^6.0.3",
60-
"typescript-eslint": "^8.62.1",
60+
"typescript-eslint": "^8.65.0",
6161
"vite": "catalog:",
62-
"vitest": "^4.1.9",
62+
"vitest": "^4.1.10",
6363
"vue": "catalog:"
6464
},
6565
"simple-git-hooks": {
@@ -79,5 +79,5 @@
7979
"eslint --cache --fix"
8080
]
8181
},
82-
"packageManager": "pnpm@10.34.4"
82+
"packageManager": "pnpm@10.34.5"
8383
}

packages/plugin-vue-jsx/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"@vue/babel-plugin-jsx": "^2.0.1"
4343
},
4444
"devDependencies": {
45-
"tsdown": "^0.22.3",
45+
"tsdown": "^0.22.13",
4646
"unrun": "^0.3.1",
4747
"vite": "catalog:"
4848
},

packages/plugin-vue-jsx/src/index.ts

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -58,22 +58,20 @@ function vueJsxPlugin(options: Options = {}): Plugin {
5858
tsPluginPromise ??=
5959
tsTransform === 'built-in'
6060
? // @ts-ignore missing type
61-
import('@babel/plugin-syntax-typescript').then(
62-
(r) =>
63-
babel.createConfigItem([r.default, { isTSX: true }], {
64-
type: 'plugin',
65-
})!,
61+
import('@babel/plugin-syntax-typescript').then((r) =>
62+
babel.createConfigItem([r.default, { isTSX: true }], {
63+
type: 'plugin',
64+
})!,
6665
)
6766
: // @ts-ignore missing type
68-
import('@babel/plugin-transform-typescript').then(
69-
(r) =>
70-
babel.createConfigItem(
71-
[
72-
r.default,
73-
{ ...tsPluginOptions, isTSX: true, allowExtensions: true },
74-
],
75-
{ type: 'plugin' },
76-
)!,
67+
import('@babel/plugin-transform-typescript').then((r) =>
68+
babel.createConfigItem(
69+
[
70+
r.default,
71+
{ ...tsPluginOptions, isTSX: true, allowExtensions: true },
72+
],
73+
{ type: 'plugin' },
74+
)!,
7775
)
7876
return tsPluginPromise
7977
}

packages/plugin-vue/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@
4242
"@babel/types": "^7.29.7",
4343
"@jridgewell/gen-mapping": "^0.3.13",
4444
"@jridgewell/trace-mapping": "^0.3.31",
45-
"obug": "^2.1.3",
45+
"obug": "^2.1.4",
4646
"slash": "^5.1.0",
4747
"source-map-js": "^1.2.1",
48-
"tsdown": "^0.22.3",
48+
"tsdown": "^0.22.13",
4949
"unrun": "^0.3.1",
5050
"vite": "catalog:",
5151
"vue": "catalog:"

playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"version": "1.0.0",
55
"type": "module",
66
"devDependencies": {
7-
"@types/node": "^24.13.2",
7+
"@types/node": "^24.13.3",
88
"convert-source-map": "^2.0.0",
99
"css-color-names": "^1.0.1",
1010
"kill-port": "^1.6.1"

playground/tailwind-v3/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"autoprefixer": "^10.5.2",
13+
"autoprefixer": "^10.5.4",
1414
"tailwindcss": "^3.4.19",
1515
"vue": "catalog:"
1616
},
1717
"devDependencies": {
18-
"@types/node": "^24.13.2",
18+
"@types/node": "^24.13.3",
1919
"@vitejs/plugin-vue": "workspace:*",
2020
"ts-node": "^10.9.2"
2121
}

playground/tailwind/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"@tailwindcss/vite": "^4.3.2",
14-
"tailwindcss": "^4.3.2",
13+
"@tailwindcss/vite": "^4.3.3",
14+
"tailwindcss": "^4.3.3",
1515
"vue": "catalog:"
1616
},
1717
"devDependencies": {
18-
"@types/node": "^24.13.2",
18+
"@types/node": "^24.13.3",
1919
"@vitejs/plugin-vue": "workspace:*"
2020
}
2121
}

playground/vue-jsx-ts-built-in/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"devDependencies": {
1616
"@babel/plugin-syntax-decorators": "^7.29.7",
1717
"@rollup/plugin-swc": "^0.4.1",
18-
"@swc/core": "^1.15.43",
18+
"@swc/core": "^1.15.46",
1919
"@vitejs/plugin-vue": "workspace:*",
2020
"@vitejs/plugin-vue-jsx": "workspace:*",
2121
"rollup": "^4.62.2"

playground/vue-jsx/Script.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ export default defineComponent(() => {
77
88
return () => (
99
<button class="script" onClick={inc}>
10-
script {count.value}
10+
script{' '}
11+
{count.value}
1112
</button>
1213
)
1314
})

0 commit comments

Comments
 (0)