Skip to content

Commit 5bed74a

Browse files
committed
chore: merge main
2 parents e4e9dda + c6bd324 commit 5bed74a

File tree

27 files changed

+1498
-1486
lines changed

27 files changed

+1498
-1486
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
name: "Build&Test: node-${{ matrix.node_version }}, ${{ matrix.os }}"
5050
steps:
5151
- name: Checkout
52-
uses: actions/checkout@v4
52+
uses: actions/checkout@v5
5353

5454
- name: Install pnpm
5555
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
@@ -98,7 +98,7 @@ jobs:
9898
runs-on: ubuntu-latest
9999
name: "Lint: node-LTS, ubuntu-latest"
100100
steps:
101-
- uses: actions/checkout@v4
101+
- uses: actions/checkout@v5
102102
with:
103103
fetch-depth: 0
104104

.github/workflows/issue-close-require.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
pull-requests: write # for actions-cool/issues-helper to update PRs
1414
steps:
1515
- name: need reproduction
16-
uses: actions-cool/issues-helper@a610082f8ac0cf03e357eb8dd0d5e2ba075e017e # v3
16+
uses: actions-cool/issues-helper@50068f49b7b2b3857270ead65e2d02e4459b022c # v3
1717
with:
1818
actions: "close-issues"
1919
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/issue-labeled.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- name: contribution welcome
1616
if: github.event.label.name == 'contribution welcome' || github.event.label.name == 'help wanted'
17-
uses: actions-cool/issues-helper@a610082f8ac0cf03e357eb8dd0d5e2ba075e017e # v3
17+
uses: actions-cool/issues-helper@50068f49b7b2b3857270ead65e2d02e4459b022c # v3
1818
with:
1919
actions: "create-comment, remove-labels"
2020
token: ${{ secrets.GITHUB_TOKEN }}
@@ -25,7 +25,7 @@ jobs:
2525

2626
- name: remove pending
2727
if: (github.event.label.name == 'enhancement' || contains(github.event.label.description, '(priority)')) && contains(github.event.issue.labels.*.name, 'pending triage')
28-
uses: actions-cool/issues-helper@a610082f8ac0cf03e357eb8dd0d5e2ba075e017e # v3
28+
uses: actions-cool/issues-helper@50068f49b7b2b3857270ead65e2d02e4459b022c # v3
2929
with:
3030
actions: "remove-labels"
3131
token: ${{ secrets.GITHUB_TOKEN }}
@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: need reproduction
3636
if: github.event.label.name == 'need reproduction'
37-
uses: actions-cool/issues-helper@a610082f8ac0cf03e357eb8dd0d5e2ba075e017e # v3
37+
uses: actions-cool/issues-helper@50068f49b7b2b3857270ead65e2d02e4459b022c # v3
3838
with:
3939
actions: "create-comment, remove-labels"
4040
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/publish.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
environment: Release
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222

2323
- name: Install pnpm
2424
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
@@ -40,6 +40,4 @@ jobs:
4040
run: npm i -g [email protected]
4141

4242
- name: Publish package
43-
run: pnpm run ci-publish ${{ github.ref_name }}
44-
env:
45-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
43+
run: npm i -g npm@^11.5.2 && pnpm run ci-publish ${{ github.ref_name }}

.github/workflows/release-continuous.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
steps:
1111
- name: Checkout code
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313

1414
- name: Install pnpm
1515
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0

.github/workflows/release-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
permissions:
1717
contents: write # for yyx990803/release-tag to create a release tag
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020

2121
- name: Get pkgName for tag
2222
id: tag

.github/workflows/semantic-pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
pull-requests: read
1717
steps:
1818
- name: Validate PR title
19-
uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 # v5
19+
uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6
2020
with:
2121
subjectPattern: ^(?![A-Z]).+$
2222
subjectPatternError: |

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -36,30 +36,30 @@
3636
"ci-publish": "tsx scripts/publishCI.ts"
3737
},
3838
"devDependencies": {
39-
"@babel/types": "^7.28.0",
40-
"@eslint/js": "^9.30.1",
39+
"@babel/types": "^7.28.2",
40+
"@eslint/js": "^9.34.0",
4141
"@types/babel__core": "^7.20.5",
4242
"@types/convert-source-map": "^2.0.3",
4343
"@types/debug": "^4.1.12",
4444
"@types/fs-extra": "^11.0.4",
45-
"@types/node": "^22.16.0",
45+
"@types/node": "^22.18.0",
4646
"@vitejs/release-scripts": "^1.6.0",
47-
"eslint": "^9.30.1",
47+
"eslint": "^9.34.0",
4848
"eslint-import-resolver-typescript": "^4.4.4",
4949
"eslint-plugin-import-x": "^4.16.1",
50-
"eslint-plugin-n": "^17.21.0",
51-
"eslint-plugin-regexp": "^2.9.0",
50+
"eslint-plugin-n": "^17.21.3",
51+
"eslint-plugin-regexp": "^2.10.0",
5252
"execa": "^9.6.0",
53-
"fs-extra": "^11.3.0",
54-
"lint-staged": "^16.1.2",
53+
"fs-extra": "^11.3.1",
54+
"lint-staged": "^16.1.5",
5555
"picocolors": "^1.1.1",
56-
"playwright-chromium": "^1.53.2",
56+
"playwright-chromium": "^1.55.0",
5757
"prettier": "3.6.2",
58-
"rollup": "^4.44.2",
59-
"simple-git-hooks": "^2.13.0",
60-
"tsx": "^4.20.3",
61-
"typescript": "^5.8.3",
62-
"typescript-eslint": "^8.35.1",
58+
"rollup": "^4.48.1",
59+
"simple-git-hooks": "^2.13.1",
60+
"tsx": "^4.20.5",
61+
"typescript": "^5.9.2",
62+
"typescript-eslint": "^8.40.0",
6363
"vite": "catalog:",
6464
"vitest": "^3.2.4",
6565
"vue": "catalog:"
@@ -81,7 +81,7 @@
8181
"eslint --cache --fix"
8282
]
8383
},
84-
"packageManager": "pnpm@10.12.4",
84+
"packageManager": "pnpm@10.15.0",
8585
"pnpm": {
8686
"overrides": {
8787
"@vitejs/plugin-vue": "workspace:*"

packages/plugin-vue-jsx/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@
3535
},
3636
"homepage": "https://github.com/vitejs/vite-plugin-vue/tree/main/packages/plugin-vue-jsx#readme",
3737
"dependencies": {
38-
"@babel/core": "^7.28.0",
38+
"@babel/core": "^7.28.3",
3939
"@babel/plugin-syntax-typescript": "^7.27.1",
4040
"@babel/plugin-transform-typescript": "^7.28.0",
41-
"@rolldown/pluginutils": "^1.0.0-beta.24",
42-
"@vue/babel-plugin-jsx": "^1.4.0"
41+
"@rolldown/pluginutils": "^1.0.0-beta.34",
42+
"@vue/babel-plugin-jsx": "^1.5.0"
4343
},
4444
"devDependencies": {
45-
"tsdown": "^0.12.9",
45+
"tsdown": "^0.14.2",
4646
"vite": "catalog:"
4747
},
4848
"peerDependencies": {

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,11 @@ function vueJsxPlugin(options: Options = {}): Plugin {
8989
config.define?.__VUE_PROD_HYDRATION_MISMATCH_DETAILS__,
9090
) ?? false,
9191
},
92+
optimizeDeps: this.meta.rolldownVersion
93+
? {
94+
rolldownOptions: { transform: { jsx: 'preserve' } },
95+
}
96+
: {},
9297
}
9398
},
9499

0 commit comments

Comments
 (0)