Skip to content

Commit 632f1cf

Browse files
committed
chore: upgrade deps & workflows
1 parent 66c2e8f commit 632f1cf

File tree

6 files changed

+1240
-1276
lines changed

6 files changed

+1240
-1276
lines changed

.github/workflows/release-commit.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Publish Any Commit
2+
on: [push, pull_request]
3+
4+
permissions: {}
5+
6+
jobs:
7+
release:
8+
uses: sxzz/workflows/.github/workflows/release-commit.yml@v1
9+
with:
10+
compact: true

.github/workflows/release.yml

Lines changed: 6 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,15 @@
11
name: Release
22

3-
permissions:
4-
contents: write
5-
63
on:
74
push:
85
tags:
96
- 'v*'
107

118
jobs:
129
release:
13-
runs-on: ubuntu-latest
14-
steps:
15-
- uses: actions/checkout@v4
16-
with:
17-
fetch-depth: 0
18-
19-
- name: Set node
20-
uses: actions/setup-node@v4
21-
with:
22-
node-version: lts/*
23-
24-
- run: npx changelogithub
25-
env:
26-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
10+
uses: sxzz/workflows/.github/workflows/release.yml@v1
11+
with:
12+
publish: true
13+
permissions:
14+
contents: write
15+
id-token: write

.github/workflows/unit-test.yml

Lines changed: 2 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -7,55 +7,5 @@ on:
77
branches: [main]
88

99
jobs:
10-
lint:
11-
runs-on: ubuntu-latest
12-
steps:
13-
- uses: actions/checkout@v4
14-
15-
- name: Install pnpm
16-
uses: pnpm/[email protected]
17-
18-
- name: Set node
19-
uses: actions/setup-node@v4
20-
with:
21-
node-version: lts/*
22-
cache: pnpm
23-
24-
- name: Install
25-
run: pnpm i
26-
27-
- name: Lint
28-
run: pnpm run lint
29-
30-
test:
31-
runs-on: ${{ matrix.os }}
32-
33-
strategy:
34-
matrix:
35-
os: [ubuntu-latest, windows-latest]
36-
node: [20, 22, 24]
37-
fail-fast: false
38-
39-
steps:
40-
- uses: actions/checkout@v4
41-
42-
- name: Install pnpm
43-
uses: pnpm/[email protected]
44-
45-
- name: Set node ${{ matrix.node }}
46-
uses: actions/setup-node@v4
47-
with:
48-
node-version: ${{ matrix.node }}
49-
cache: pnpm
50-
51-
- name: Install dependencies
52-
run: pnpm i
53-
54-
- name: Build
55-
run: pnpm run build
56-
57-
- name: Typecheck
58-
run: pnpm run typecheck
59-
60-
- name: Test
61-
run: pnpm run test
10+
unit-test:
11+
uses: sxzz/workflows/.github/workflows/unit-test.yml@v1

package.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "unplugin-vue-named-export",
33
"version": "0.9.0",
4-
"packageManager": "pnpm@10.13.1",
4+
"packageManager": "pnpm@10.15.0",
55
"description": "Named export for Vue SFC.",
66
"type": "module",
77
"keywords": [
@@ -62,31 +62,31 @@
6262
"prepublishOnly": "pnpm run build"
6363
},
6464
"dependencies": {
65-
"@vue/language-core": "^3.0.3",
66-
"ast-kit": "^2.1.1",
67-
"magic-string-ast": "^1.0.0",
65+
"@vue/language-core": "^3.0.6",
66+
"ast-kit": "^2.1.2",
67+
"magic-string-ast": "^1.0.2",
6868
"muggle-string": "^0.4.1",
69-
"unplugin": "^2.3.5"
69+
"unplugin": "^2.3.8"
7070
},
7171
"devDependencies": {
72-
"@babel/types": "^7.28.1",
73-
"@sxzz/eslint-config": "^7.0.6",
74-
"@sxzz/prettier-config": "^2.2.3",
75-
"@sxzz/test-utils": "^0.5.7",
76-
"@types/node": "^24.0.14",
77-
"bumpp": "^10.2.0",
72+
"@babel/types": "^7.28.2",
73+
"@sxzz/eslint-config": "^7.1.4",
74+
"@sxzz/prettier-config": "^2.2.4",
75+
"@sxzz/test-utils": "^0.5.10",
76+
"@types/node": "^24.3.0",
77+
"bumpp": "^10.2.3",
7878
"change-case": "^5.4.4",
79-
"eslint": "^9.31.0",
79+
"eslint": "^9.34.0",
8080
"prettier": "^3.6.2",
81-
"tsdown": "^0.13.0-beta.2",
82-
"tsx": "^4.20.3",
83-
"typescript": "^5.8.3",
84-
"unplugin-oxc": "^0.4.6",
85-
"unplugin-vue": "^7.0.0",
86-
"vite": "^7.0.5",
81+
"tsdown": "^0.14.1",
82+
"tsx": "^4.20.4",
83+
"typescript": "^5.9.2",
84+
"unplugin-oxc": "^0.5.1",
85+
"unplugin-vue": "^7.0.1",
86+
"vite": "^7.1.3",
8787
"vitest": "^3.2.4",
88-
"vue": "^3.5.17",
89-
"vue-tsc": "^3.0.3"
88+
"vue": "^3.5.19",
89+
"vue-tsc": "^3.0.6"
9090
},
9191
"engines": {
9292
"node": ">=20.18.0"

playground/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
"typecheck": "vue-tsc --noEmit"
1111
},
1212
"dependencies": {
13-
"vue": "^3.5.17"
13+
"vue": "^3.5.19"
1414
},
1515
"devDependencies": {
16-
"@vitejs/plugin-vue": "^6.0.0",
17-
"@vue/tsconfig": "^0.7.0",
18-
"tsx": "^4.20.3",
19-
"typescript": "~5.8.3",
20-
"vite": "^7.0.5",
21-
"vue-tsc": "^3.0.3"
16+
"@vitejs/plugin-vue": "^6.0.1",
17+
"@vue/tsconfig": "^0.8.1",
18+
"tsx": "^4.20.4",
19+
"typescript": "~5.9.2",
20+
"vite": "^7.1.3",
21+
"vue-tsc": "^3.0.6"
2222
}
2323
}

0 commit comments

Comments
 (0)