chore: update deps

This commit is contained in:
roymondchen 2025-10-13 15:57:48 +08:00
parent abab44ad24
commit 2888004c17
7 changed files with 686 additions and 635 deletions

View File

@ -3,7 +3,7 @@
"name": "tmagic", "name": "tmagic",
"private": true, "private": true,
"type": "module", "type": "module",
"packageManager": "pnpm@10.11.1", "packageManager": "pnpm@10.18.2",
"scripts": { "scripts": {
"bootstrap": "pnpm i && pnpm build", "bootstrap": "pnpm i && pnpm build",
"clean:top": "rimraf */**/dist */**/types */dist coverage dwt* temp packages/cli/lib", "clean:top": "rimraf */**/dist */**/types */dist coverage dwt* temp packages/cli/lib",
@ -47,7 +47,7 @@
"@types/node": "24.0.10", "@types/node": "24.0.10",
"@vitejs/plugin-vue": "^5.2.3", "@vitejs/plugin-vue": "^5.2.3",
"@vitest/coverage-v8": "^2.1.9", "@vitest/coverage-v8": "^2.1.9",
"@vue/compiler-sfc": "^3.5.13", "@vue/compiler-sfc": "catalog:",
"c8": "^7.14.0", "c8": "^7.14.0",
"commitizen": "^4.3.1", "commitizen": "^4.3.1",
"conventional-changelog-cli": "^5.0.0", "conventional-changelog-cli": "^5.0.0",
@ -55,7 +55,7 @@
"cz-conventional-changelog": "^3.3.0", "cz-conventional-changelog": "^3.3.0",
"element-plus": "^2.9.11", "element-plus": "^2.9.11",
"enquirer": "^2.4.1", "enquirer": "^2.4.1",
"eslint": "^9.35.0", "eslint": "^9.37.0",
"execa": "^4.1.0", "execa": "^4.1.0",
"highlight.js": "^11.11.1", "highlight.js": "^11.11.1",
"husky": "^9.1.7", "husky": "^9.1.7",
@ -76,7 +76,7 @@
"vitepress": "^1.6.4", "vitepress": "^1.6.4",
"vitest": "^3.2.4", "vitest": "^3.2.4",
"vue": "catalog:", "vue": "catalog:",
"vue-tsc": "^3.0.7" "vue-tsc": "^3.1.1"
}, },
"config": { "config": {
"commitizen": { "commitizen": {

View File

@ -31,7 +31,7 @@
"@vitejs/plugin-vue": "^6.0.1", "@vitejs/plugin-vue": "^6.0.1",
"@vitejs/plugin-vue-jsx": "^5.1.0", "@vitejs/plugin-vue-jsx": "^5.1.0",
"@vue/compiler-sfc": "catalog:", "@vue/compiler-sfc": "catalog:",
"sass": "^1.91.0", "lightningcss": "^1.30.2",
"terser": "^5.43.1", "terser": "^5.43.1",
"typescript": "catalog:", "typescript": "catalog:",
"unplugin-auto-import": "^20.0.0", "unplugin-auto-import": "^20.0.0",

View File

@ -116,5 +116,6 @@ export default defineConfig({
build: { build: {
sourcemap: true, sourcemap: true,
cssMinify: 'lightningcss'
}, },
}); });

1299
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -7,8 +7,8 @@ packages:
- 'eslint-config' - 'eslint-config'
catalog: catalog:
vue: ^3.5.21 vue: ^3.5.22
'@vue/compiler-sfc': ^3.5.20 '@vue/compiler-sfc': ^3.5.22
vite: ^7.1.5 vite: ^7.1.9
typescript: "^5.9.2" typescript: "^5.9.3"

View File

@ -32,10 +32,10 @@
"@vue/compiler-sfc": "catalog:", "@vue/compiler-sfc": "catalog:",
"fs-extra": "^11.3.1", "fs-extra": "^11.3.1",
"minimist": "^1.2.8", "minimist": "^1.2.8",
"lightningcss": "^1.30.2",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"rollup": "4.44.1", "rollup": "4.44.1",
"rollup-plugin-external-globals": "^0.13.0", "rollup-plugin-external-globals": "^0.13.0",
"sass": "^1.91.0",
"terser": "^5.43.1", "terser": "^5.43.1",
"typescript": "catalog:", "typescript": "catalog:",
"vite": "catalog:" "vite": "catalog:"

View File

@ -66,6 +66,7 @@ export default defineConfig({
}, },
build: { build: {
cssMinify: 'lightningcss',
rollupOptions: { rollupOptions: {
input: { input: {
page: path.resolve(__dirname, './page/index.html'), page: path.resolve(__dirname, './page/index.html'),