Skip to content

Commit cbe96fc

Browse files
committed
Merge remote-tracking branch 'origin/main' into fix/emit-new-dts
2 parents 5381002 + 6cd5754 commit cbe96fc

File tree

6 files changed

+1230
-1113
lines changed

6 files changed

+1230
-1113
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- run: npm i -g --force corepack && corepack enable
18-
- uses: actions/setup-node@v4
18+
- uses: actions/setup-node@v5
1919
with:
2020
node-version: lts/*
2121
cache: pnpm
@@ -36,9 +36,9 @@ jobs:
3636
runs-on: ubuntu-latest
3737

3838
steps:
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v5
4040
- run: npm i -g --force corepack && corepack enable
41-
- uses: actions/setup-node@v4
41+
- uses: actions/setup-node@v5
4242
with:
4343
node-version: lts/*
4444
cache: pnpm

.github/workflows/release-nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
release-nightly:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
17+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1818
- run: npm i -g --force corepack && corepack enable
19-
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
19+
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
2020
with:
2121
node-version: lts/*
2222
cache: pnpm

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
release:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818

1919
- run: npm i -g --force corepack && corepack enable
20-
- uses: actions/setup-node@v4
20+
- uses: actions/setup-node@v5
2121
with:
2222
node-version: lts/*
2323
cache: pnpm

package.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vue-sfc-transformer",
33
"type": "module",
44
"version": "0.1.16",
5-
"packageManager": "pnpm@10.13.1",
5+
"packageManager": "pnpm@10.15.1",
66
"description": "Tools for minimal TypeScript transpilation of Vue SFCs",
77
"license": "MIT",
88
"repository": "nuxt-contrib/vue-sfc-transformer",
@@ -52,31 +52,31 @@
5252
"@babel/parser": "^7.27.0"
5353
},
5454
"devDependencies": {
55-
"@antfu/eslint-config": "4.16.2",
56-
"@babel/types": "7.28.1",
57-
"@types/node": "22.16.3",
55+
"@antfu/eslint-config": "5.3.0",
56+
"@babel/types": "7.28.4",
57+
"@types/node": "22.18.1",
5858
"@vitest/coverage-v8": "3.2.4",
59-
"@vue/compiler-core": "3.5.17",
60-
"@vue/compiler-dom": "3.5.17",
61-
"bumpp": "10.2.0",
59+
"@vue/compiler-core": "3.5.21",
60+
"@vue/compiler-dom": "3.5.21",
61+
"bumpp": "10.2.3",
6262
"changelogithub": "13.16.0",
63-
"esbuild": "0.25.6",
64-
"eslint": "9.31.0",
63+
"esbuild": "0.25.9",
64+
"eslint": "9.35.0",
6565
"exsolve": "1.0.7",
6666
"installed-check": "9.3.0",
67-
"knip": "5.61.3",
68-
"lint-staged": "16.1.2",
67+
"knip": "5.63.1",
68+
"lint-staged": "16.1.6",
6969
"mkdist": "2.3.0",
70-
"pkg-pr-new": "0.0.54",
71-
"simple-git-hooks": "2.13.0",
72-
"typescript": "5.8.3",
73-
"unbuild": "3.5.0",
70+
"pkg-pr-new": "0.0.59",
71+
"simple-git-hooks": "2.13.1",
72+
"typescript": "5.9.2",
73+
"unbuild": "3.6.1",
7474
"vitest": "3.2.4",
75-
"vue": "3.5.17",
76-
"vue-tsc": "3.0.1"
75+
"vue": "3.5.21",
76+
"vue-tsc": "3.0.6"
7777
},
7878
"resolutions": {
79-
"@vue/compiler-core": "3.5.17",
79+
"@vue/compiler-core": "3.5.21",
8080
"vue-sfc-transformer": "link:."
8181
},
8282
"simple-git-hooks": {

playground/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"vue-sfc-transformer": "latest"
99
},
1010
"devDependencies": {
11-
"@vue/compiler-sfc": "3.5.17",
12-
"esbuild": "0.25.6"
11+
"@vue/compiler-sfc": "3.5.21",
12+
"esbuild": "0.25.9"
1313
}
1414
}

0 commit comments

Comments
 (0)