Skip to content

Commit c52ef73

Browse files
committed
refactor: migrating from react to vue3 and refactoring related code
1 parent f27998e commit c52ef73

Some content is hidden

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

69 files changed

+5187
-2294
lines changed

.release-it.ts

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/* eslint-disable no-template-curly-in-string */
2+
import type { Config } from 'release-it'
3+
4+
export default {
5+
git: {
6+
commitMessage: 'v${version}',
7+
tagName: 'v${version}',
8+
},
9+
npm: {
10+
publish: false,
11+
},
12+
hooks: {
13+
'after:bump': 'tsx scripts/release.ts',
14+
},
15+
} satisfies Config

.vscode/extensions.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"recommendations": [
3-
"tauri-apps.tauri-vscode",
4-
"rust-lang.rust-analyzer",
5-
"biomejs.biome",
6-
"antfu.unocss"
7-
]
2+
"recommendations": [
3+
"tauri-apps.tauri-vscode",
4+
"rust-lang.rust-analyzer",
5+
"antfu.unocss",
6+
"dbaeumer.vscode-eslint"
7+
]
88
}

0 commit comments

Comments
 (0)