diff --git a/package.json b/package.json index 5ed4d2d6..824864ac 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "pg:vue2": "pnpm playground:vue2", "playground:react": "pnpm --filter \"runtime-react\" build:libs && pnpm --filter \"runtime-react\" --filter \"tmagic-playground\" dev:react", "pg:react": "pnpm playground:react", - "build": "pnpm build:dts && pnpm --filter \"@tmagic/*\" build", + "build": "pnpm build:dts && pnpm --filter \"@tmagic/cli\" build && node scripts/build.mjs", "build:dts": "pnpm --filter \"@tmagic/cli\" build && tsc -p tsconfig.build-browser.json && vue-tsc --declaration --emitDeclarationOnly --project tsconfig.build-vue.json && rollup -c rollup.dts.config.js && rimraf temp", "check:type": "tsc --incremental --noEmit -p tsconfig.check.json && vue-tsc --noEmit -p tsconfig.check-vue.json", "build:playground": "pnpm --filter \"runtime-vue3\" build && pnpm --filter \"tmagic-playground\" build", @@ -51,6 +51,7 @@ "@typescript-eslint/parser": "^5.62.0", "@vitejs/plugin-vue": "^5.2.1", "@vitest/coverage-v8": "^2.1.8", + "@vue/compiler-sfc": "^3.5.13", "c8": "^7.14.0", "commitizen": "^4.3.1", "conventional-changelog-cli": "^4.1.0", @@ -80,8 +81,8 @@ "serialize-javascript": "^6.0.2", "shx": "^0.3.4", "typescript": "^5.7.3", - "vite": "^6.0.9", - "vitepress": "^1.5.0", + "vite": "^6.0.10", + "vitepress": "^1.6.1", "vitest": "^3.0.2", "vue": "^3.5.13", "vue-tsc": "^2.2.0" diff --git a/packages/core/package.json b/packages/core/package.json index bd9e3c1a..bb94a293 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -24,9 +24,6 @@ "resetcss.css" ], "license": "Apache-2.0", - "scripts": { - "build": "vite build" - }, "engines": { "node": ">=18" }, @@ -35,9 +32,6 @@ "type": "git", "url": "https://github.com/Tencent/tmagic-editor.git" }, - "keywords": [ - "vue" - ], "dependencies": { "@tmagic/data-source": "workspace:*", "@tmagic/dep": "workspace:*", @@ -48,10 +42,7 @@ }, "devDependencies": { "@types/events": "^3.0.0", - "@types/lodash-es": "^4.17.4", - "@types/node": "^18.19.0", - "rimraf": "^3.0.2", - "vite": "^6.0.9" + "@types/lodash-es": "^4.17.4" }, "peerDependencies": { "typescript": "*" diff --git a/packages/core/vite.config.ts b/packages/core/vite.config.ts deleted file mode 100644 index 9037dc09..00000000 --- a/packages/core/vite.config.ts +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import { defineConfig } from 'vite'; - -import pkg from './package.json'; - -export default defineConfig({ - build: { - cssCodeSplit: false, - sourcemap: false, - minify: false, - target: 'esnext', - - lib: { - entry: 'src/index.ts', - name: 'TMagicCore', - fileName: 'tmagic-core', - }, - - rollupOptions: { - // 确保外部化处理那些你不想打包进库的依赖 - external(id: string) { - return Object.keys({ - ...pkg.dependencies, - ...pkg.peerDependencies, - }).some((k) => new RegExp(`^${k}`).test(id)); - }, - }, - }, -}); diff --git a/packages/data-source/package.json b/packages/data-source/package.json index ae3d59c6..7b2d402f 100644 --- a/packages/data-source/package.json +++ b/packages/data-source/package.json @@ -19,9 +19,6 @@ "src" ], "license": "Apache-2.0", - "scripts": { - "build": "vite build --mode=es && vite build --mode=umd" - }, "engines": { "node": ">=18" }, @@ -49,9 +46,6 @@ }, "devDependencies": { "@types/events": "^3.0.0", - "@types/lodash-es": "^4.17.4", - "@types/node": "^18.19.0", - "tsc-alias": "^1.8.5", - "vite": "^6.0.9" + "@types/lodash-es": "^4.17.4" } } diff --git a/packages/data-source/vite.config.ts b/packages/data-source/vite.config.ts deleted file mode 100644 index bff470ec..00000000 --- a/packages/data-source/vite.config.ts +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import path from 'path'; - -import { defineConfig } from 'vite'; - -import pkg from './package.json'; - -export default defineConfig(({ mode }) => ({ - resolve: { - alias: [{ find: /^@data-source/, replacement: path.join(__dirname, './src') }], - }, - - build: { - cssCodeSplit: false, - sourcemap: false, - minify: false, - target: 'esnext', - - lib: { - entry: 'src/index.ts', - name: 'TMagicDataSource', - fileName: 'tmagic-data-source', - }, - - rollupOptions: { - // 确保外部化处理那些你不想打包进库的依赖 - external(id: string) { - if (mode === 'umd' && id === 'lodash-es') { - return false; - } - return Object.keys({ - ...pkg.dependencies, - ...pkg.peerDependencies, - }).some((k) => new RegExp(`^${k}`).test(id)); - }, - }, - }, -})); diff --git a/packages/dep/package.json b/packages/dep/package.json index a65ce8b9..73e03d74 100644 --- a/packages/dep/package.json +++ b/packages/dep/package.json @@ -19,9 +19,6 @@ "src" ], "license": "Apache-2.0", - "scripts": { - "build": "vite build" - }, "engines": { "node": ">=18" }, @@ -30,11 +27,6 @@ "type": "git", "url": "https://github.com/Tencent/tmagic-editor.git" }, - "devDependencies": { - "@types/node": "^18.19.0", - "rimraf": "^3.0.2", - "vite": "^6.0.9" - }, "peerDependencies": { "@tmagic/schema": "workspace:*", "@tmagic/utils": "workspace:*", diff --git a/packages/dep/vite.config.ts b/packages/dep/vite.config.ts deleted file mode 100644 index 271ba92a..00000000 --- a/packages/dep/vite.config.ts +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { defineConfig } from 'vite'; - -import pkg from './package.json'; - -export default defineConfig({ - build: { - sourcemap: false, - minify: false, - target: 'esnext', - - lib: { - entry: 'src/index.ts', - name: 'TMagicDep', - fileName: 'tmagic-dep', - }, - - rollupOptions: { - // 确保外部化处理那些你不想打包进库的依赖 - external(id: string) { - return Object.keys(pkg.peerDependencies).some((k) => new RegExp(`^${k}`).test(id)); - }, - }, - }, -}); diff --git a/packages/design/package.json b/packages/design/package.json index 2d45b206..1d6b82a5 100644 --- a/packages/design/package.json +++ b/packages/design/package.json @@ -23,9 +23,6 @@ "src" ], "license": "Apache-2.0", - "scripts": { - "build": "vite build" - }, "engines": { "node": ">=18" }, @@ -44,13 +41,6 @@ "dependencies": { "@popperjs/core": "^2.11.8" }, - "devDependencies": { - "@types/node": "^18.19.0", - "@vitejs/plugin-vue": "^5.2.1", - "@vue/compiler-sfc": "^3.5.13", - "rimraf": "^3.0.2", - "vite": "^6.0.9" - }, "peerDependencies": { "vue": ">=3.5.0", "typescript": "*" diff --git a/packages/design/vite.config.ts b/packages/design/vite.config.ts deleted file mode 100644 index 90101dc1..00000000 --- a/packages/design/vite.config.ts +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import { defineConfig } from 'vite'; -import vue from '@vitejs/plugin-vue'; - -import pkg from './package.json'; - -export default defineConfig({ - plugins: [vue()], - - build: { - cssCodeSplit: false, - sourcemap: false, - minify: false, - target: 'esnext', - - lib: { - entry: 'src/index.ts', - name: 'TMagicDesign', - fileName: 'tmagic-design', - cssFileName: 'style', - }, - - rollupOptions: { - // 确保外部化处理那些你不想打包进库的依赖 - external(id: string) { - return Object.keys(pkg.peerDependencies).some((k) => new RegExp(`^${k}`).test(id)); - }, - - output: { - // 在 UMD 构建模式下为这些外部化的依赖提供一个全局变量 - globals: { - vue: 'Vue', - }, - }, - }, - }, -}); diff --git a/packages/editor/package.json b/packages/editor/package.json index a5e7925a..c5024848 100644 --- a/packages/editor/package.json +++ b/packages/editor/package.json @@ -28,9 +28,6 @@ "src" ], "license": "Apache-2.0", - "scripts": { - "build": "vite build" - }, "engines": { "node": ">=18" }, @@ -70,17 +67,10 @@ "devDependencies": { "@types/events": "^3.0.0", "@types/lodash-es": "^4.17.4", - "@types/node": "^18.19.0", "@types/serialize-javascript": "^5.0.1", "@types/sortablejs": "^1.15.8", - "@vitejs/plugin-vue": "^5.2.1", - "@vue/compiler-sfc": "^3.5.13", "@vue/test-utils": "^2.4.6", - "rimraf": "^3.0.2", - "sass": "^1.83.0", - "tsc-alias": "^1.8.5", - "type-fest": "^4.10.3", - "vite": "^6.0.9" + "type-fest": "^4.10.3" }, "peerDependencies": { "@tmagic/core": "workspace:*", diff --git a/packages/editor/vite.config.ts b/packages/editor/vite.config.ts deleted file mode 100644 index 2cd012b2..00000000 --- a/packages/editor/vite.config.ts +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import path from 'path'; - -import { defineConfig } from 'vite'; -import vue from '@vitejs/plugin-vue'; - -import pkg from './package.json'; - -export default defineConfig({ - plugins: [vue()], - - resolve: { - alias: [{ find: /^@editor/, replacement: path.join(__dirname, './src') }], - }, - - build: { - cssCodeSplit: false, - sourcemap: false, - minify: false, - target: 'esnext', - - lib: { - entry: 'src/index.ts', - name: 'TMagicEditor', - fileName: 'tmagic-editor', - cssFileName: 'style', - }, - - rollupOptions: { - // 确保外部化处理那些你不想打包进库的依赖 - external(id: string) { - return Object.keys({ - ...pkg.dependencies, - ...pkg.peerDependencies, - }).some((k) => new RegExp(`^${k}`).test(id)); - }, - - output: { - // 在 UMD 构建模式下为这些外部化的依赖提供一个全局变量 - globals: { - vue: 'Vue', - 'element-plus': 'ElementPlus', - }, - }, - }, - }, -}); diff --git a/packages/element-plus-adapter/package.json b/packages/element-plus-adapter/package.json index 9dd06da6..67f67b27 100644 --- a/packages/element-plus-adapter/package.json +++ b/packages/element-plus-adapter/package.json @@ -19,9 +19,6 @@ "src" ], "license": "Apache-2.0", - "scripts": { - "build": "vite build" - }, "engines": { "node": ">=18" }, @@ -37,11 +34,6 @@ "vue3", "typescript" ], - "devDependencies": { - "@types/node": "^18.19.0", - "rimraf": "^3.0.2", - "vite": "^6.0.9" - }, "peerDependencies": { "@tmagic/design": "workspace:*", "element-plus": ">=2.8.0", diff --git a/packages/element-plus-adapter/vite.config.ts b/packages/element-plus-adapter/vite.config.ts deleted file mode 100644 index b9dc5fbe..00000000 --- a/packages/element-plus-adapter/vite.config.ts +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { defineConfig } from 'vite'; - -import pkg from './package.json'; - -export default defineConfig({ - build: { - cssCodeSplit: false, - sourcemap: false, - minify: false, - target: 'esnext', - - lib: { - entry: 'src/index.ts', - name: 'TMagicElementPlusAdapter', - fileName: 'tmagic-element-plus-adapter', - }, - - rollupOptions: { - // 确保外部化处理那些你不想打包进库的依赖 - external(id: string) { - return Object.keys(pkg.peerDependencies).some((k) => new RegExp(`^${k}`).test(id)); - }, - }, - }, -}); diff --git a/packages/form/package.json b/packages/form/package.json index 64e73012..dd7987d3 100644 --- a/packages/form/package.json +++ b/packages/form/package.json @@ -28,9 +28,6 @@ "src" ], "license": "Apache-2.0", - "scripts": { - "build": "vite build" - }, "engines": { "node": ">=18" }, @@ -48,14 +45,8 @@ }, "devDependencies": { "@types/lodash-es": "^4.17.4", - "@types/node": "^18.19.0", "@types/sortablejs": "^1.15.8", - "@vitejs/plugin-vue": "^5.2.1", - "@vue/compiler-sfc": "^3.5.13", - "@vue/test-utils": "^2.4.6", - "rimraf": "^3.0.2", - "sass": "^1.83.0", - "vite": "^6.0.9" + "@vue/test-utils": "^2.4.6" }, "peerDependencies": { "@tmagic/design": "workspace:*", diff --git a/packages/form/vite.config.ts b/packages/form/vite.config.ts deleted file mode 100644 index adaf6dad..00000000 --- a/packages/form/vite.config.ts +++ /dev/null @@ -1,58 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import { defineConfig } from 'vite'; -import vue from '@vitejs/plugin-vue'; - -import pkg from './package.json'; - -export default defineConfig({ - plugins: [vue()], - - build: { - cssCodeSplit: false, - sourcemap: false, - minify: false, - target: 'esnext', - - lib: { - entry: 'src/index.ts', - name: 'TMagicForm', - fileName: 'tmagic-form', - cssFileName: 'style', - }, - - rollupOptions: { - // 确保外部化处理那些你不想打包进库的依赖 - external(id: string) { - return Object.keys({ - ...pkg.dependencies, - ...pkg.peerDependencies, - }).some((k) => new RegExp(`^${k}`).test(id)); - }, - - output: { - // 在 UMD 构建模式下为这些外部化的依赖提供一个全局变量 - globals: { - vue: 'Vue', - 'element-plus': 'ElementPlus', - }, - }, - }, - }, -}); diff --git a/packages/schema/package.json b/packages/schema/package.json index 708a2b9b..3f608f71 100644 --- a/packages/schema/package.json +++ b/packages/schema/package.json @@ -30,11 +30,6 @@ "type": "git", "url": "https://github.com/Tencent/tmagic-editor.git" }, - "devDependencies": { - "@types/node": "^18.19.0", - "rimraf": "^3.0.2", - "vite": "^6.0.9" - }, "peerDependencies": { "typescript": "*" }, diff --git a/packages/schema/vite.config.ts b/packages/schema/vite.config.ts deleted file mode 100644 index c2ecd538..00000000 --- a/packages/schema/vite.config.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { defineConfig } from 'vite'; - -export default defineConfig({ - build: { - sourcemap: false, - - lib: { - entry: 'src/index.ts', - name: 'TMagicSchema', - fileName: 'tmagic-schema', - }, - }, -}); diff --git a/packages/stage/package.json b/packages/stage/package.json index c1130dd1..2701c497 100644 --- a/packages/stage/package.json +++ b/packages/stage/package.json @@ -19,9 +19,6 @@ "src" ], "license": "Apache-2.0", - "scripts": { - "build": "vite build" - }, "engines": { "node": ">=18" }, @@ -41,16 +38,10 @@ }, "devDependencies": { "@types/events": "^3.0.0", - "@types/lodash-es": "^4.17.4", - "@types/node": "^18.19.0", - "rimraf": "^3.0.2", - "sass": "^1.83.0", - "vite": "^6.0.9" + "@types/lodash-es": "^4.17.4" }, "peerDependencies": { "@tmagic/core": "workspace:*", - "@tmagic/schema": "workspace:*", - "@tmagic/utils": "workspace:*", "typescript": "*" }, "peerDependenciesMeta": { diff --git a/packages/stage/src/ActionManager.ts b/packages/stage/src/ActionManager.ts index 08026d7f..67f6bfbf 100644 --- a/packages/stage/src/ActionManager.ts +++ b/packages/stage/src/ActionManager.ts @@ -21,9 +21,8 @@ import KeyController from 'keycon'; import { throttle } from 'lodash-es'; import type { MoveableOptions, OnDragStart } from 'moveable'; -import { Env } from '@tmagic/core'; -import type { Id } from '@tmagic/schema'; -import { addClassName, getDocument, getIdFromEl, removeClassNameByClassName } from '@tmagic/utils'; +import type { Id } from '@tmagic/core'; +import { addClassName, Env, getDocument, getIdFromEl, removeClassNameByClassName } from '@tmagic/core'; import { AbleActionEventType, diff --git a/packages/stage/src/DragResizeHelper.ts b/packages/stage/src/DragResizeHelper.ts index 20dacc42..a80a6584 100644 --- a/packages/stage/src/DragResizeHelper.ts +++ b/packages/stage/src/DragResizeHelper.ts @@ -32,7 +32,7 @@ import type { } from 'moveable'; import MoveableHelper from 'moveable-helper'; -import { calcValueByFontsize, getIdFromEl, setIdToEl } from '@tmagic/utils'; +import { calcValueByFontsize, getIdFromEl, setIdToEl } from '@tmagic/core'; import { DRAG_EL_ID_PREFIX, GHOST_EL_ID_PREFIX, Mode, ZIndex } from './const'; import TargetShadow from './TargetShadow'; diff --git a/packages/stage/src/StageCore.ts b/packages/stage/src/StageCore.ts index be0a0363..6a7f3ebc 100644 --- a/packages/stage/src/StageCore.ts +++ b/packages/stage/src/StageCore.ts @@ -20,8 +20,8 @@ import { EventEmitter } from 'events'; import type { MoveableOptions, OnDragStart } from 'moveable'; -import type { Id } from '@tmagic/schema'; -import { getIdFromEl } from '@tmagic/utils'; +import type { Id } from '@tmagic/core'; +import { getIdFromEl } from '@tmagic/core'; import ActionManager from './ActionManager'; import { DEFAULT_ZOOM } from './const'; diff --git a/packages/stage/src/StageDragResize.ts b/packages/stage/src/StageDragResize.ts index 1975d90f..cf6c6793 100644 --- a/packages/stage/src/StageDragResize.ts +++ b/packages/stage/src/StageDragResize.ts @@ -19,7 +19,7 @@ /* eslint-disable no-param-reassign */ import Moveable, { MoveableOptions } from 'moveable'; -import { getIdFromEl } from '@tmagic/utils'; +import { getIdFromEl } from '@tmagic/core'; import { Mode, StageDragStatus } from './const'; import type DragResizeHelper from './DragResizeHelper'; diff --git a/packages/stage/src/StageMask.ts b/packages/stage/src/StageMask.ts index a0f1b5af..eeb343cb 100644 --- a/packages/stage/src/StageMask.ts +++ b/packages/stage/src/StageMask.ts @@ -16,7 +16,7 @@ * limitations under the License. */ -import { createDiv, getDocument, injectStyle } from '@tmagic/utils'; +import { createDiv, getDocument, injectStyle } from '@tmagic/core'; import { Mode, ZIndex } from './const'; import Rule from './Rule'; diff --git a/packages/stage/src/StageMultiDragResize.ts b/packages/stage/src/StageMultiDragResize.ts index 92651af7..bf4562c6 100644 --- a/packages/stage/src/StageMultiDragResize.ts +++ b/packages/stage/src/StageMultiDragResize.ts @@ -18,7 +18,7 @@ import Moveable from 'moveable'; -import { getIdFromEl } from '@tmagic/utils'; +import { getIdFromEl } from '@tmagic/core'; import { DRAG_EL_ID_PREFIX, Mode, StageDragStatus } from './const'; import DragResizeHelper from './DragResizeHelper'; diff --git a/packages/stage/src/StageRender.ts b/packages/stage/src/StageRender.ts index 74ed100d..658b1acc 100644 --- a/packages/stage/src/StageRender.ts +++ b/packages/stage/src/StageRender.ts @@ -18,8 +18,8 @@ import { EventEmitter } from 'events'; -import { Id } from '@tmagic/schema'; -import { getElById, getHost, injectStyle, isSameDomain } from '@tmagic/utils'; +import type { Id } from '@tmagic/core'; +import { getElById, getHost, injectStyle, isSameDomain } from '@tmagic/core'; import { DEFAULT_ZOOM, RenderType } from './const'; import style from './style.css?raw'; diff --git a/packages/stage/src/TargetShadow.ts b/packages/stage/src/TargetShadow.ts index 11cbee05..80eb5440 100644 --- a/packages/stage/src/TargetShadow.ts +++ b/packages/stage/src/TargetShadow.ts @@ -15,7 +15,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -import { getElById, getIdFromEl, guid, setIdToEl } from '@tmagic/utils'; +import { getElById, getIdFromEl, guid, setIdToEl } from '@tmagic/core'; import { Mode, ZIndex } from './const'; import type { TargetElement as ShadowElement, TargetShadowConfig, UpdateDragEl } from './types'; diff --git a/packages/stage/src/types.ts b/packages/stage/src/types.ts index 64b7f57e..de9886e5 100644 --- a/packages/stage/src/types.ts +++ b/packages/stage/src/types.ts @@ -19,8 +19,8 @@ import type { GuidesOptions } from '@scena/guides'; import type { MoveableOptions, OnDragStart } from 'moveable'; +import type { Id, MApp, MContainer, MNode } from '@tmagic/core'; import Core from '@tmagic/core'; -import type { Id, MApp, MContainer, MNode } from '@tmagic/schema'; import { AbleActionEventType, ContainerHighlightType, GuidesType, RenderType, ZIndex } from './const'; import DragResizeHelper from './DragResizeHelper'; diff --git a/packages/stage/src/util.ts b/packages/stage/src/util.ts index b633b67f..dca59789 100644 --- a/packages/stage/src/util.ts +++ b/packages/stage/src/util.ts @@ -15,7 +15,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -import { getIdFromEl, removeClassName } from '@tmagic/utils'; +import { getIdFromEl, removeClassName } from '@tmagic/core'; import { GHOST_EL_ID_PREFIX, Mode, SELECTED_CLASS, ZIndex } from './const'; import type { Offset, SortEventData, TargetElement } from './types'; diff --git a/packages/stage/vite.config.ts b/packages/stage/vite.config.ts deleted file mode 100644 index 2246afc2..00000000 --- a/packages/stage/vite.config.ts +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { defineConfig } from 'vite'; - -import pkg from './package.json'; - -export default defineConfig({ - build: { - cssCodeSplit: false, - sourcemap: false, - minify: false, - target: 'esnext', - - lib: { - entry: 'src/index.ts', - name: 'TMagicStage', - fileName: 'tmagic-stage', - }, - - rollupOptions: { - // 确保外部化处理那些你不想打包进库的依赖 - external(id: string) { - return Object.keys({ - ...pkg.dependencies, - ...pkg.peerDependencies, - }).some((k) => new RegExp(`^${k}`).test(id)); - }, - }, - }, -}); diff --git a/packages/table/package.json b/packages/table/package.json index f95e82fb..1cdcde29 100644 --- a/packages/table/package.json +++ b/packages/table/package.json @@ -27,9 +27,6 @@ "src" ], "license": "Apache-2.0", - "scripts": { - "build": "vite build" - }, "engines": { "node": ">=18" }, @@ -42,13 +39,7 @@ "lodash-es": "^4.17.21" }, "devDependencies": { - "@types/lodash-es": "^4.17.4", - "@types/node": "^18.19.0", - "@vitejs/plugin-vue": "^5.2.1", - "@vue/compiler-sfc": "^3.5.13", - "rimraf": "^3.0.2", - "sass": "^1.83.0", - "vite": "^6.0.9" + "@types/lodash-es": "^4.17.4" }, "peerDependencies": { "@tmagic/design": "workspace:*", diff --git a/packages/table/vite.config.ts b/packages/table/vite.config.ts deleted file mode 100644 index 2a6fdf59..00000000 --- a/packages/table/vite.config.ts +++ /dev/null @@ -1,58 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import { defineConfig } from 'vite'; -import vue from '@vitejs/plugin-vue'; - -import pkg from './package.json'; - -export default defineConfig({ - plugins: [vue()], - - build: { - cssCodeSplit: false, - sourcemap: false, - minify: false, - target: 'esnext', - - lib: { - entry: 'src/index.ts', - name: 'TMagicTable', - fileName: 'tmagic-table', - cssFileName: 'style', - }, - - rollupOptions: { - // 确保外部化处理那些你不想打包进库的依赖 - external(id: string) { - return Object.keys({ - ...pkg.dependencies, - ...pkg.peerDependencies, - }).some((k) => new RegExp(`^${k}`).test(id)); - }, - - output: { - // 在 UMD 构建模式下为这些外部化的依赖提供一个全局变量 - globals: { - vue: 'Vue', - 'element-plus': 'ElementPlus', - }, - }, - }, - }, -}); diff --git a/packages/tdesign-vue-next-adapter/package.json b/packages/tdesign-vue-next-adapter/package.json index 72d03ad3..321b098f 100644 --- a/packages/tdesign-vue-next-adapter/package.json +++ b/packages/tdesign-vue-next-adapter/package.json @@ -37,13 +37,6 @@ "vue3", "typescript" ], - "devDependencies": { - "@vitejs/plugin-vue": "^5.2.1", - "@vue/compiler-sfc": "^3.5.13", - "@types/node": "^18.19.0", - "rimraf": "^3.0.2", - "vite": "^6.0.9" - }, "peerDependencies": { "@tmagic/design": "workspace:*", "tdesign-vue-next": "^1.9.8", diff --git a/packages/tdesign-vue-next-adapter/vite.config.ts b/packages/tdesign-vue-next-adapter/vite.config.ts deleted file mode 100644 index a4817bc2..00000000 --- a/packages/tdesign-vue-next-adapter/vite.config.ts +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { defineConfig } from 'vite'; -import vue from '@vitejs/plugin-vue'; - -import pkg from './package.json'; - -export default defineConfig({ - plugins: [vue()], - - build: { - cssCodeSplit: false, - sourcemap: false, - minify: false, - target: 'esnext', - - lib: { - entry: 'src/index.ts', - name: 'TMagicTdesignVueNextAdapter', - fileName: 'tmagic-tdesign-vue-next-adapter', - }, - - rollupOptions: { - // 确保外部化处理那些你不想打包进库的依赖 - external(id: string) { - return Object.keys(pkg.peerDependencies).some((k) => new RegExp(`^${k}`).test(id)); - }, - }, - }, -}); diff --git a/packages/ui-react/package.json b/packages/ui-react/package.json index fba5a33d..2c5c4f03 100644 --- a/packages/ui-react/package.json +++ b/packages/ui-react/package.json @@ -15,9 +15,6 @@ "type": "git", "url": "https://github.com/Tencent/tmagic-editor.git" }, - "scripts": { - "build": "vite build" - }, "dependencies": { "@tmagic/react-button": "workspace:*", "@tmagic/react-container": "workspace:*", @@ -37,9 +34,5 @@ "typescript": { "optional": true } - }, - "devDependencies": { - "rimraf": "^3.0.2", - "vite": "^6.0.9" } } diff --git a/packages/ui-react/vite.config.ts b/packages/ui-react/vite.config.ts deleted file mode 100644 index aabce97f..00000000 --- a/packages/ui-react/vite.config.ts +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import { defineConfig } from 'vite'; - -import pkg from './package.json'; - -export default defineConfig({ - build: { - cssCodeSplit: false, - sourcemap: false, - minify: false, - target: 'esnext', - - lib: { - entry: 'src/index.ts', - name: 'TMagicUiReact', - fileName: 'tmagic-ui-react', - }, - - rollupOptions: { - // 确保外部化处理那些你不想打包进库的依赖 - external(id: string) { - return Object.keys({ - ...pkg.dependencies, - ...pkg.peerDependencies, - }).some((k) => new RegExp(`^${k}`).test(id)); - }, - }, - }, -}); diff --git a/packages/ui/package.json b/packages/ui/package.json index 12666b8c..a6c134fa 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -12,9 +12,6 @@ "engines": { "node": ">=18" }, - "scripts": { - "build": "vite build" - }, "license": "Apache-2.0", "repository": { "directory": "packages/ui", @@ -40,9 +37,5 @@ "typescript": { "optional": true } - }, - "devDependencies": { - "rimraf": "^3.0.2", - "vite": "^6.0.9" } } diff --git a/packages/ui/vite.config.ts b/packages/ui/vite.config.ts deleted file mode 100644 index 4ae32904..00000000 --- a/packages/ui/vite.config.ts +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import { defineConfig } from 'vite'; - -import pkg from './package.json'; - -export default defineConfig({ - build: { - cssCodeSplit: false, - sourcemap: false, - minify: false, - target: 'esnext', - - lib: { - entry: 'src/index.ts', - name: 'TMagicUi', - fileName: 'tmagic-ui', - }, - - rollupOptions: { - // 确保外部化处理那些你不想打包进库的依赖 - external(id: string) { - return Object.keys({ - ...pkg.dependencies, - ...pkg.peerDependencies, - }).some((k) => new RegExp(`^${k}`).test(id)); - }, - }, - }, -}); diff --git a/packages/utils/package.json b/packages/utils/package.json index b50044be..5becd636 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -18,9 +18,6 @@ "src" ], "license": "Apache-2.0", - "scripts": { - "build": "vite build --mode=es && vite build --mode=umd" - }, "engines": { "node": ">=18" }, @@ -33,10 +30,7 @@ "lodash-es": "^4.17.21" }, "devDependencies": { - "@types/lodash-es": "^4.17.4", - "@types/node": "^18.19.0", - "rimraf": "^3.0.2", - "vite": "^6.0.9" + "@types/lodash-es": "^4.17.4" }, "peerDependencies": { "@tmagic/schema": "workspace:*", diff --git a/packages/utils/vite.config.ts b/packages/utils/vite.config.ts deleted file mode 100644 index c8e3a30f..00000000 --- a/packages/utils/vite.config.ts +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import { defineConfig, type LibraryFormats } from 'vite'; - -import pkg from './package.json'; - -export default defineConfig(({ mode }) => ({ - build: { - cssCodeSplit: false, - sourcemap: false, - minify: false, - target: 'esnext', - emptyOutDir: false, - - lib: { - entry: 'src/index.ts', - name: 'TMagicUtils', - formats: ['es', 'umd', 'cjs'].includes(mode) ? [mode as LibraryFormats] : ['es', 'umd'], - fileName: 'tmagic-utils', - }, - - rollupOptions: { - // 确保外部化处理那些你不想打包进库的依赖 - external(id: string) { - if (mode === 'umd' && id === 'lodash-es') { - return false; - } - return Object.keys({ - ...pkg.dependencies, - ...pkg.peerDependencies, - }).some((k) => new RegExp(`^${k}`).test(id)); - }, - }, - }, -})); diff --git a/playground/package.json b/playground/package.json index 5d25e7e0..e071c321 100644 --- a/playground/package.json +++ b/playground/package.json @@ -37,6 +37,6 @@ "typescript": "^5.7.3", "unplugin-auto-import": "^0.12.0", "unplugin-vue-components": "^0.22.11", - "vite": "^6.0.9" + "vite": "^6.0.10" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index cee41a1f..5d216a84 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -28,10 +28,13 @@ importers: version: 5.62.0(eslint@8.57.1)(typescript@5.7.3) '@vitejs/plugin-vue': specifier: ^5.2.1 - version: 5.2.1(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3)) + version: 5.2.1(vite@6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3)) '@vitest/coverage-v8': specifier: ^2.1.8 version: 2.1.8(vitest@3.0.2(@types/node@18.19.61)(jiti@2.4.2)(jsdom@19.0.0)(sass@1.83.4)(terser@5.37.0)) + '@vue/compiler-sfc': + specifier: ^3.5.13 + version: 3.5.13 c8: specifier: ^7.14.0 version: 7.14.0 @@ -120,11 +123,11 @@ importers: specifier: ^5.7.3 version: 5.7.3 vite: - specifier: ^6.0.9 - version: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) + specifier: ^6.0.10 + version: 6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) vitepress: - specifier: ^1.5.0 - version: 1.5.0(@algolia/client-search@5.19.0)(@types/node@18.19.61)(@types/react@18.3.18)(@vue/composition-api@1.7.2(vue@3.5.13(typescript@5.7.3)))(async-validator@4.2.5)(postcss@8.5.1)(qrcode@1.5.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.83.4)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.37.0)(typescript@5.7.3) + specifier: ^1.6.1 + version: 1.6.1(@algolia/client-search@5.19.0)(@types/node@18.19.61)(@types/react@18.3.18)(async-validator@4.2.5)(postcss@8.5.1)(qrcode@1.5.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.83.4)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.37.0)(typescript@5.7.3) vitest: specifier: ^3.0.2 version: 3.0.2(@types/node@18.19.61)(jiti@2.4.2)(jsdom@19.0.0)(sass@1.83.4)(terser@5.37.0) @@ -199,15 +202,6 @@ importers: '@types/lodash-es': specifier: ^4.17.4 version: 4.17.12 - '@types/node': - specifier: ^18.19.0 - version: 18.19.61 - rimraf: - specifier: ^3.0.2 - version: 3.0.2 - vite: - specifier: ^6.0.9 - version: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) packages/data-source: dependencies: @@ -233,15 +227,6 @@ importers: '@types/lodash-es': specifier: ^4.17.4 version: 4.17.12 - '@types/node': - specifier: ^18.19.0 - version: 18.19.61 - tsc-alias: - specifier: ^1.8.5 - version: 1.8.10 - vite: - specifier: ^6.0.9 - version: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) packages/dep: dependencies: @@ -254,16 +239,6 @@ importers: typescript: specifier: '*' version: 5.7.3 - devDependencies: - '@types/node': - specifier: ^18.19.0 - version: 18.19.61 - rimraf: - specifier: ^3.0.2 - version: 3.0.2 - vite: - specifier: ^6.0.9 - version: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) packages/design: dependencies: @@ -276,22 +251,6 @@ importers: vue: specifier: '>=3.5.0' version: 3.5.13(typescript@5.7.3) - devDependencies: - '@types/node': - specifier: ^18.19.0 - version: 18.19.61 - '@vitejs/plugin-vue': - specifier: ^5.2.1 - version: 5.2.1(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3)) - '@vue/compiler-sfc': - specifier: ^3.5.13 - version: 3.5.13 - rimraf: - specifier: ^3.0.2 - version: 3.0.2 - vite: - specifier: ^6.0.9 - version: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) packages/editor: dependencies: @@ -365,39 +324,18 @@ importers: '@types/lodash-es': specifier: ^4.17.4 version: 4.17.12 - '@types/node': - specifier: ^18.19.0 - version: 18.19.61 '@types/serialize-javascript': specifier: ^5.0.1 version: 5.0.4 '@types/sortablejs': specifier: ^1.15.8 version: 1.15.8 - '@vitejs/plugin-vue': - specifier: ^5.2.1 - version: 5.2.1(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3)) - '@vue/compiler-sfc': - specifier: ^3.5.13 - version: 3.5.13 '@vue/test-utils': specifier: ^2.4.6 version: 2.4.6 - rimraf: - specifier: ^3.0.2 - version: 3.0.2 - sass: - specifier: ^1.83.0 - version: 1.83.4 - tsc-alias: - specifier: ^1.8.5 - version: 1.8.10 type-fest: specifier: ^4.10.3 - version: 4.32.0 - vite: - specifier: ^6.0.9 - version: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) + version: 4.33.0 packages/element-plus-adapter: dependencies: @@ -410,16 +348,6 @@ importers: typescript: specifier: '*' version: 5.7.3 - devDependencies: - '@types/node': - specifier: ^18.19.0 - version: 18.19.61 - rimraf: - specifier: ^3.0.2 - version: 3.0.2 - vite: - specifier: ^6.0.9 - version: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) packages/form: dependencies: @@ -454,46 +382,18 @@ importers: '@types/lodash-es': specifier: ^4.17.4 version: 4.17.12 - '@types/node': - specifier: ^18.19.0 - version: 18.19.61 '@types/sortablejs': specifier: ^1.15.8 version: 1.15.8 - '@vitejs/plugin-vue': - specifier: ^5.2.1 - version: 5.2.1(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3)) - '@vue/compiler-sfc': - specifier: ^3.5.13 - version: 3.5.13 '@vue/test-utils': specifier: ^2.4.6 version: 2.4.6 - rimraf: - specifier: ^3.0.2 - version: 3.0.2 - sass: - specifier: ^1.83.0 - version: 1.83.4 - vite: - specifier: ^6.0.9 - version: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) packages/schema: dependencies: typescript: specifier: '*' version: 5.7.3 - devDependencies: - '@types/node': - specifier: ^18.19.0 - version: 18.19.61 - rimraf: - specifier: ^3.0.2 - version: 3.0.2 - vite: - specifier: ^6.0.9 - version: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) packages/stage: dependencies: @@ -503,12 +403,6 @@ importers: '@tmagic/core': specifier: workspace:* version: link:../core - '@tmagic/schema': - specifier: workspace:* - version: link:../schema - '@tmagic/utils': - specifier: workspace:* - version: link:../utils events: specifier: ^3.3.0 version: 3.3.0 @@ -537,18 +431,6 @@ importers: '@types/lodash-es': specifier: ^4.17.4 version: 4.17.12 - '@types/node': - specifier: ^18.19.0 - version: 18.19.61 - rimraf: - specifier: ^3.0.2 - version: 3.0.2 - sass: - specifier: ^1.83.0 - version: 1.83.4 - vite: - specifier: ^6.0.9 - version: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) packages/table: dependencies: @@ -571,24 +453,6 @@ importers: '@types/lodash-es': specifier: ^4.17.4 version: 4.17.12 - '@types/node': - specifier: ^18.19.0 - version: 18.19.61 - '@vitejs/plugin-vue': - specifier: ^5.2.1 - version: 5.2.1(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3)) - '@vue/compiler-sfc': - specifier: ^3.5.13 - version: 3.5.13 - rimraf: - specifier: ^3.0.2 - version: 3.0.2 - sass: - specifier: ^1.83.0 - version: 1.83.4 - vite: - specifier: ^6.0.9 - version: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) packages/tdesign-vue-next-adapter: dependencies: @@ -604,22 +468,6 @@ importers: vue: specifier: '>=3.5.0' version: 3.5.13(typescript@5.7.3) - devDependencies: - '@types/node': - specifier: ^18.19.0 - version: 18.19.61 - '@vitejs/plugin-vue': - specifier: ^5.2.1 - version: 5.2.1(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3)) - '@vue/compiler-sfc': - specifier: ^3.5.13 - version: 3.5.13 - rimraf: - specifier: ^3.0.2 - version: 3.0.2 - vite: - specifier: ^6.0.9 - version: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) packages/ui: dependencies: @@ -656,13 +504,6 @@ importers: typescript: specifier: '*' version: 5.7.3 - devDependencies: - rimraf: - specifier: ^3.0.2 - version: 3.0.2 - vite: - specifier: ^6.0.9 - version: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) packages/ui-react: dependencies: @@ -699,13 +540,6 @@ importers: typescript: specifier: '*' version: 5.7.3 - devDependencies: - rimraf: - specifier: ^3.0.2 - version: 3.0.2 - vite: - specifier: ^6.0.9 - version: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) packages/utils: dependencies: @@ -722,15 +556,6 @@ importers: '@types/lodash-es': specifier: ^4.17.4 version: 4.17.12 - '@types/node': - specifier: ^18.19.0 - version: 18.19.61 - rimraf: - specifier: ^3.0.2 - version: 3.0.2 - vite: - specifier: ^6.0.9 - version: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) playground: dependencies: @@ -779,13 +604,13 @@ importers: version: 5.0.4 '@vitejs/plugin-legacy': specifier: ^6.0.0 - version: 6.0.0(terser@5.37.0)(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0)) + version: 6.0.0(terser@5.37.0)(vite@6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0)) '@vitejs/plugin-vue': specifier: ^5.2.1 - version: 5.2.1(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3)) + version: 5.2.1(vite@6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3)) '@vitejs/plugin-vue-jsx': specifier: ^4.0.1 - version: 4.1.1(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3)) + version: 4.1.1(vite@6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3)) '@vue/compiler-sfc': specifier: ^3.5.13 version: 3.5.13 @@ -800,13 +625,13 @@ importers: version: 5.7.3 unplugin-auto-import: specifier: ^0.12.0 - version: 0.12.2(@vueuse/core@11.3.0(@vue/composition-api@1.7.2(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3)))(rollup@4.31.0) + version: 0.12.2(@vueuse/core@12.4.0(typescript@5.7.3))(rollup@4.31.0) unplugin-vue-components: specifier: ^0.22.11 version: 0.22.12(@babel/parser@7.26.5)(rollup@4.31.0)(vue@3.5.13(typescript@5.7.3)) vite: - specifier: ^6.0.9 - version: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) + specifier: ^6.0.10 + version: 6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) react-components/button: dependencies: @@ -1120,7 +945,7 @@ importers: version: 18.3.5(@types/react@18.3.18) '@vitejs/plugin-legacy': specifier: ^6.0.0 - version: 6.0.0(terser@5.37.0)(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0)) + version: 6.0.0(terser@5.37.0)(vite@6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0)) '@vitejs/plugin-react-refresh': specifier: ^1.3.1 version: 1.3.6 @@ -1128,8 +953,8 @@ importers: specifier: ^5.7.3 version: 5.7.3 vite: - specifier: ^6.0.9 - version: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) + specifier: ^6.0.10 + version: 6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) runtime/react-runtime-help: dependencies: @@ -1185,7 +1010,7 @@ importers: version: 18.19.61 '@vitejs/plugin-vue': specifier: ^5.2.1 - version: 5.2.1(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3)) + version: 5.2.1(vite@6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3)) '@vue/compiler-sfc': specifier: ^3.5.13 version: 3.5.13 @@ -1193,8 +1018,8 @@ importers: specifier: ^3.0.2 version: 3.0.2 vite: - specifier: ^6.0.9 - version: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) + specifier: ^6.0.10 + version: 6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) vue-tsc: specifier: ^2.2.0 version: 2.2.0(typescript@5.7.3) @@ -1259,10 +1084,10 @@ importers: version: 3.0.3 '@vitejs/plugin-legacy': specifier: ^6.0.0 - version: 6.0.0(terser@5.37.0)(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0)) + version: 6.0.0(terser@5.37.0)(vite@6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0)) '@vitejs/plugin-vue2': specifier: ^2.3.1 - version: 2.3.3(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@2.7.16) + version: 2.3.3(vite@6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@2.7.16) rollup: specifier: ^4.31.0 version: 4.31.0 @@ -1273,8 +1098,8 @@ importers: specifier: ^1.83.0 version: 1.83.4 vite: - specifier: ^6.0.9 - version: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) + specifier: ^6.0.10 + version: 6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) vue-template-compiler: specifier: ^2.7.4 version: 2.7.16 @@ -1305,13 +1130,13 @@ importers: version: 18.19.61 '@vitejs/plugin-legacy': specifier: ^6.0.0 - version: 6.0.0(terser@5.37.0)(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0)) + version: 6.0.0(terser@5.37.0)(vite@6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0)) '@vitejs/plugin-vue': specifier: 5.2.1 - version: 5.2.1(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3)) + version: 5.2.1(vite@6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3)) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3)) + version: 3.1.0(vite@6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3)) '@vue/compiler-sfc': specifier: ^3.5.13 version: 3.5.13 @@ -1331,8 +1156,8 @@ importers: specifier: ^5.7.3 version: 5.7.3 vite: - specifier: ^6.0.9 - version: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) + specifier: ^6.0.10 + version: 6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) vue-components/button: dependencies: @@ -2616,8 +2441,8 @@ packages: resolution: {integrity: sha512-e5+YUKENATs1JgYHMzTr2MW/NDcXGfYFAuOQU8gJgF/kEh4EqKgfGrfLI67bMD4tbhZVlkigz/9YYwWcbOFthg==} engines: {node: '>=10.13.0'} - '@iconify-json/simple-icons@1.2.20': - resolution: {integrity: sha512-WlQ95zrdxxizrFt2HtkfYjyWatLfE8Z7BKOkew9quG5S5AKYVxF1PkTtOs8LDWShce1DpvxKWQne4W5DQyEGZg==} + '@iconify-json/simple-icons@1.2.21': + resolution: {integrity: sha512-aqbIuVshMZ2fNEhm25//9DoKudboXF3CpoEQJJlHl9gVSVNOTr4cgaCIZvgSEYmys2HHEfmhcpoZIhoEFZS8SQ==} '@iconify/types@2.0.0': resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==} @@ -2896,26 +2721,26 @@ packages: '@scena/react-ruler@0.19.0': resolution: {integrity: sha512-2OEOjLMOptDxdSuEqID2JAljQuYoeoV09MnLjiBeyzJxoUcVjzyBCPwkMbHRKj2Z3WrwztJAFBF+y6yNNM5Lcw==} - '@shikijs/core@1.29.1': - resolution: {integrity: sha512-Mo1gGGkuOYjDu5H8YwzmOuly9vNr8KDVkqj9xiKhhhFS8jisAtDSEWB9hzqRHLVQgFdA310e8XRJcW4tYhRB2A==} + '@shikijs/core@2.0.3': + resolution: {integrity: sha512-dhbLagx1As0BmaNGUTxJ/qshb4MPyKYIvjCcd7y1utDToebUS4BZI3FH+WVCJF3/VwWWKOhuzX4lgjOb7qtSjQ==} - '@shikijs/engine-javascript@1.29.1': - resolution: {integrity: sha512-Hpi8k9x77rCQ7F/7zxIOUruNkNidMyBnP5qAGbLFqg4kRrg1HZhkB8btib5EXbQWTtLb5gBHOdBwshk20njD7Q==} + '@shikijs/engine-javascript@2.0.3': + resolution: {integrity: sha512-GMmfP8xEmUl0H7RXo4VTFYqAWzAADtlghA9perlm6mzuo0n/Ih+owh57ZLWBMMe/N1TUMis4SGJRvx31HtK3jg==} - '@shikijs/engine-oniguruma@1.29.1': - resolution: {integrity: sha512-gSt2WhLNgEeLstcweQOSp+C+MhOpTsgdNXRqr3zP6M+BUBZ8Md9OU2BYwUYsALBxHza7hwaIWtFHjQ/aOOychw==} + '@shikijs/engine-oniguruma@2.0.3': + resolution: {integrity: sha512-MicRzo0aNaS18yXBnXjYFLnzi5Sh3NUHtm/WXzavtpGiWd75gRdZsZDMceeFyTL9MMy9iGifK2JePXY5dlZHIA==} - '@shikijs/langs@1.29.1': - resolution: {integrity: sha512-iERn4HlyuT044/FgrvLOaZgKVKf3PozjKjyV/RZ5GnlyYEAZFcgwHGkYboeBv2IybQG1KVS/e7VGgiAU4JY2Gw==} + '@shikijs/langs@2.0.3': + resolution: {integrity: sha512-L+QcwH6tjVY21xDxe3etR+C+33mAbkyQVvUIsszwnQrRVI54r7VPNTMVWR4EbZfPFwWmwLCoO83V5YiBWusvVg==} - '@shikijs/themes@1.29.1': - resolution: {integrity: sha512-lb11zf72Vc9uxkl+aec2oW1HVTHJ2LtgZgumb4Rr6By3y/96VmlU44bkxEb8WBWH3RUtbqAJEN0jljD9cF7H7g==} + '@shikijs/themes@2.0.3': + resolution: {integrity: sha512-NFnArltjzmYAssn1SLIFlKX9HJEL9K12z0uBB0tg579hW6UHIXwfd+AhsaB/+cXYLix2YuN5uEPJpqtRN2zi0A==} - '@shikijs/transformers@1.29.1': - resolution: {integrity: sha512-jVzJhriZ0t9y8TvsV4AzBm74BCLUoK6Bf41aIjJkZc1hKeL0PQtsNL096b1AxgZRwJwTfQalWZ+jBkRAuqVMPw==} + '@shikijs/transformers@2.0.3': + resolution: {integrity: sha512-Y5qmHA2LyoXccq6IPP5AeGqialn54ZORPBxbyNH+NEbCaw1nTCCy+Tfm3idRkqYLZOw0yq+0MUSDWbGezHksow==} - '@shikijs/types@1.29.1': - resolution: {integrity: sha512-aBqAuhYRp5vSir3Pc9+QPu9WESBOjUo03ao0IHLC4TyTioSsp/SkbAZSrIH4ghYYC1T1KTEpRSBa83bas4RnPA==} + '@shikijs/types@2.0.3': + resolution: {integrity: sha512-jyP6NMdWkbBpEn3WqqH8TCfkzE52/hS7msKGJAvxcwyQQah7+hU8x7ejFhCVoxrBaW001v+ID4zl3wspcDSaaw==} '@shikijs/vscode-textmate@10.0.1': resolution: {integrity: sha512-fTIQwLF+Qhuws31iw7Ncl1R3HUDtGwIipiJ9iU+UsDUwMhegFcQKQHd51nZjb7CArq0MvON8rbgCGQYWHUKAdg==} @@ -3492,14 +3317,14 @@ packages: '@vue/test-utils@2.4.6': resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==} - '@vueuse/core@11.3.0': - resolution: {integrity: sha512-7OC4Rl1f9G8IT6rUfi9JrKiXy4bfmHhZ5x2Ceojy0jnd3mHNEvV4JaRygH362ror6/NZ+Nl+n13LPzGiPN8cKA==} + '@vueuse/core@12.4.0': + resolution: {integrity: sha512-XnjQYcJwCsyXyIafyA6SvyN/OBtfPnjvJmbxNxQjCcyWD198urwm5TYvIUUyAxEAN0K7HJggOgT15cOlWFyLeA==} '@vueuse/core@9.13.0': resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==} - '@vueuse/integrations@11.3.0': - resolution: {integrity: sha512-5fzRl0apQWrDezmobchoiGTkGw238VWESxZHazfhP3RM7pDSiyXy18QbfYkILoYNTd23HPAfQTJpkUc5QbkwTw==} + '@vueuse/integrations@12.4.0': + resolution: {integrity: sha512-EZm+TLoZMeEwDnccnEqB54CvvcVKbVnJubOF380HqdyZAxWfQ8egnFCESdlXWEIbxFgjfhcGfZUvQx5Nqw9Ofw==} peerDependencies: async-validator: ^4 axios: ^1 @@ -3539,14 +3364,14 @@ packages: universal-cookie: optional: true - '@vueuse/metadata@11.3.0': - resolution: {integrity: sha512-pwDnDspTqtTo2HwfLw4Rp6yywuuBdYnPYDq+mO38ZYKGebCUQC/nVj/PXSiK9HX5otxLz8Fn7ECPbjiRz2CC3g==} + '@vueuse/metadata@12.4.0': + resolution: {integrity: sha512-AhPuHs/qtYrKHUlEoNO6zCXufu8OgbR8S/n2oMw1OQuBQJ3+HOLQ+EpvXs+feOlZMa0p8QVvDWNlmcJJY8rW2g==} '@vueuse/metadata@9.13.0': resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==} - '@vueuse/shared@11.3.0': - resolution: {integrity: sha512-P8gSSWQeucH5821ek2mn/ciCk+MS/zoRKqdQIM3bHq6p7GXDAJLmnRRKmF5F65sAVJIfzQlwR3aDzwCn10s8hA==} + '@vueuse/shared@12.4.0': + resolution: {integrity: sha512-9yLgbHVIF12OSCojnjTIoZL1+UA10+O4E1aD6Hpfo/DKVm5o3SZIwz6CupqGy3+IcKI8d6Jnl26EQj/YucnW0Q==} '@vueuse/shared@9.13.0': resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==} @@ -3945,10 +3770,6 @@ packages: resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} engines: {node: '>= 12'} - commander@9.5.0: - resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} - engines: {node: ^12.20.0 || >=14} - commitizen@4.3.1: resolution: {integrity: sha512-gwAPAVTy/j5YcOOebcCRIijn+mSjWJC+IYKivTu6aG8Ei/scoXgfsMRnuAk6b0GRste2J4NGxVdMN3ZpfNaVaw==} engines: {node: '>= 12'} @@ -4284,8 +4105,8 @@ packages: engines: {node: '>=14'} hasBin: true - electron-to-chromium@1.5.83: - resolution: {integrity: sha512-LcUDPqSt+V0QmI47XLzZrz5OqILSMGsPFkDYus22rIbgorSvBYEFqq854ltTmUdHkY92FSdAAvsh4jWEULMdfQ==} + electron-to-chromium@1.5.84: + resolution: {integrity: sha512-I+DQ8xgafao9Ha6y0qjHHvpZ9OfyA1qKlkHkjywxzniORU2awxyz7f/iVJcULmrF2yrM3nHQf+iDjJtbbexd/g==} element-plus@2.9.3: resolution: {integrity: sha512-6tSLp5XytDS4TMZ0P3aGZnr7MXTagfNycepNfIDitd9IgwM9y01+Ssu6mglNi8RiXYhek6LBWNOd/cvpIO12+w==} @@ -4577,8 +4398,8 @@ packages: fast-levenshtein@2.0.6: resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - fast-uri@3.0.5: - resolution: {integrity: sha512-5JnBCWpFlMo0a3ciDy/JckMzzv1U9coZrIhedq+HXxxUfDTAiS0LA8OKVao4G9BxmCVck/jtA5r3KAtRWEyD8Q==} + fast-uri@3.0.6: + resolution: {integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==} fastq@1.18.0: resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==} @@ -5511,10 +5332,6 @@ packages: mute-stream@0.0.8: resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} - mylas@2.1.13: - resolution: {integrity: sha512-+MrqnJRtxdF+xngFfUUkIMQrUUL0KsxbADUkn23Z/4ibGg192Q+z+CQyiYwvWTsYjJygmMR8+w3ZDa98Zh6ESg==} - engines: {node: '>=12.0.0'} - nanoid@3.3.8: resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} @@ -5746,10 +5563,6 @@ packages: please-upgrade-node@3.2.0: resolution: {integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==} - plimit-lit@1.6.1: - resolution: {integrity: sha512-B7+VDyb8Tl6oMJT9oSO2CW8XC/T4UcJGrwOVoNGwOQsQYhlpfajmrMj5xeejqaASq3V/EqThyOeATEOMuSEXiA==} - engines: {node: '>=12'} - pngjs@5.0.0: resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==} engines: {node: '>=10.13.0'} @@ -5809,10 +5622,6 @@ packages: querystringify@2.2.0: resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} - queue-lit@1.5.2: - resolution: {integrity: sha512-tLc36IOPeMAubu8BkW8YDBV+WyIgKlYU7zUNs0J5Vk9skSZ4JfGlPOqplP0aHdfv7HL0B2Pg6nwiq60Qc6M2Hw==} - engines: {node: '>=12'} - queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} @@ -6109,8 +5918,8 @@ packages: engines: {node: '>=4'} hasBin: true - shiki@1.29.1: - resolution: {integrity: sha512-TghWKV9pJTd/N+IgAIVJtr0qZkB7FfFCUrrEJc0aRmZupo3D1OCVRknQWVRVA7AX/M0Ld7QfoAruPzr3CnUJuw==} + shiki@2.0.3: + resolution: {integrity: sha512-njF3iF97mxWcEFxxB591EeVFgf5VPpXJKFIB3RCFSkcgINetMIb+9CfNInmzkz8BlPWlEEY1nSGd0F1807YhCg==} shx@0.3.4: resolution: {integrity: sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g==} @@ -6409,10 +6218,6 @@ packages: peerDependencies: typescript: '>=4.2.0' - tsc-alias@1.8.10: - resolution: {integrity: sha512-Ibv4KAWfFkFdKJxnWfVtdOmB0Zi1RJVxcbPGiCDsFpCQSsmpWyuzHG3rQyI5YkobWwxFPEyQfu1hdo4qLG2zPw==} - hasBin: true - tsconfig-paths@3.15.0: resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} @@ -6456,8 +6261,8 @@ packages: resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==} engines: {node: '>=14.16'} - type-fest@4.32.0: - resolution: {integrity: sha512-rfgpoi08xagF3JSdtJlCwMq9DGNDE0IMh3Mkpc1wUypg9vPi786AiqeBBKcqvIkq42azsBM85N490fyZjeUftw==} + type-fest@4.33.0: + resolution: {integrity: sha512-s6zVrxuyKbbAsSAD5ZPTB77q4YIdRctkTbJ2/Dqlinwz+8ooH2gd+YA7VA6Pa93KML9GockVvoxjZ2vHP+mu8g==} engines: {node: '>=16'} typed-array-buffer@1.0.3: @@ -6608,8 +6413,8 @@ packages: engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true - vite@5.4.12: - resolution: {integrity: sha512-KwUaKB27TvWwDJr1GjjWthLMATbGEbeWYZIbGZ5qFIsgPP3vWzLu4cVooqhm5/Z2SPDUMjyPVjTztm5tYKwQxA==} + vite@5.4.13: + resolution: {integrity: sha512-7zp3N4YSjXOSAFfdBe9pPD3FrO398QlJ/5QpFGm3L8xDP1IxDn1XRxArPw4ZKk5394MM8rcTVPY4y1Hvo62bog==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -6639,8 +6444,8 @@ packages: terser: optional: true - vite@6.0.9: - resolution: {integrity: sha512-MSgUxHcaXLtnBPktkbUSoQUANApKYuxZ6DrbVENlIorbhL2dZydTLaZ01tjUoE3szeFzlFk9ANOKk0xurh4MKA==} + vite@6.0.10: + resolution: {integrity: sha512-MEszunEcMo6pFsfXN1GhCFQqnE25tWRH0MA4f0Q7uanACi4y1Us+ZGpTMnITwCTnYzB2b9cpmnelTlxgTBmaBA==} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true peerDependencies: @@ -6679,8 +6484,8 @@ packages: yaml: optional: true - vitepress@1.5.0: - resolution: {integrity: sha512-q4Q/G2zjvynvizdB3/bupdYkCJe2umSAMv9Ju4d92E6/NXJ59z70xB0q5p/4lpRyAwflDsbwy1mLV9Q5+nlB+g==} + vitepress@1.6.1: + resolution: {integrity: sha512-n41KBL08aonxaWMnk5V+TkpZ29rZF4sgYjvIqU2k0foteNhgms5BmbVWw9xTqD5hps12H1W+EZUwc7NlHh1s3g==} hasBin: true peerDependencies: markdown-it-mathjax3: ^4 @@ -8129,7 +7934,7 @@ snapshots: '@hutson/parse-repository-url@5.0.0': {} - '@iconify-json/simple-icons@1.2.20': + '@iconify-json/simple-icons@1.2.21': dependencies: '@iconify/types': 2.0.0 @@ -8362,40 +8167,40 @@ snapshots: '@daybrush/utils': 1.13.0 framework-utils: 1.1.0 - '@shikijs/core@1.29.1': + '@shikijs/core@2.0.3': dependencies: - '@shikijs/engine-javascript': 1.29.1 - '@shikijs/engine-oniguruma': 1.29.1 - '@shikijs/types': 1.29.1 + '@shikijs/engine-javascript': 2.0.3 + '@shikijs/engine-oniguruma': 2.0.3 + '@shikijs/types': 2.0.3 '@shikijs/vscode-textmate': 10.0.1 '@types/hast': 3.0.4 hast-util-to-html: 9.0.4 - '@shikijs/engine-javascript@1.29.1': + '@shikijs/engine-javascript@2.0.3': dependencies: - '@shikijs/types': 1.29.1 + '@shikijs/types': 2.0.3 '@shikijs/vscode-textmate': 10.0.1 oniguruma-to-es: 2.2.0 - '@shikijs/engine-oniguruma@1.29.1': + '@shikijs/engine-oniguruma@2.0.3': dependencies: - '@shikijs/types': 1.29.1 + '@shikijs/types': 2.0.3 '@shikijs/vscode-textmate': 10.0.1 - '@shikijs/langs@1.29.1': + '@shikijs/langs@2.0.3': dependencies: - '@shikijs/types': 1.29.1 + '@shikijs/types': 2.0.3 - '@shikijs/themes@1.29.1': + '@shikijs/themes@2.0.3': dependencies: - '@shikijs/types': 1.29.1 + '@shikijs/types': 2.0.3 - '@shikijs/transformers@1.29.1': + '@shikijs/transformers@2.0.3': dependencies: - '@shikijs/core': 1.29.1 - '@shikijs/types': 1.29.1 + '@shikijs/core': 2.0.3 + '@shikijs/types': 2.0.3 - '@shikijs/types@1.29.1': + '@shikijs/types@2.0.3': dependencies: '@shikijs/vscode-textmate': 10.0.1 '@types/hast': 3.0.4 @@ -8832,7 +8637,7 @@ snapshots: '@ungap/structured-clone@1.2.1': {} - '@vitejs/plugin-legacy@6.0.0(terser@5.37.0)(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))': + '@vitejs/plugin-legacy@6.0.0(terser@5.37.0)(vite@6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))': dependencies: '@babel/core': 7.26.0 '@babel/preset-env': 7.26.0(@babel/core@7.26.0) @@ -8843,7 +8648,7 @@ snapshots: regenerator-runtime: 0.14.1 systemjs: 6.15.1 terser: 5.37.0 - vite: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) + vite: 6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) transitivePeerDependencies: - supports-color @@ -8857,39 +8662,39 @@ snapshots: transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue-jsx@3.1.0(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3))': + '@vitejs/plugin-vue-jsx@3.1.0(vite@6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3))': dependencies: '@babel/core': 7.26.0 '@babel/plugin-transform-typescript': 7.26.5(@babel/core@7.26.0) '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0) - vite: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) + vite: 6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) vue: 3.5.13(typescript@5.7.3) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue-jsx@4.1.1(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3))': + '@vitejs/plugin-vue-jsx@4.1.1(vite@6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3))': dependencies: '@babel/core': 7.26.0 '@babel/plugin-transform-typescript': 7.26.5(@babel/core@7.26.0) '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0) - vite: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) + vite: 6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) vue: 3.5.13(typescript@5.7.3) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue2@2.3.3(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@2.7.16)': + '@vitejs/plugin-vue2@2.3.3(vite@6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@2.7.16)': dependencies: - vite: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) + vite: 6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) vue: 2.7.16 - '@vitejs/plugin-vue@5.2.1(vite@5.4.12(@types/node@18.19.61)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3))': + '@vitejs/plugin-vue@5.2.1(vite@5.4.13(@types/node@18.19.61)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3))': dependencies: - vite: 5.4.12(@types/node@18.19.61)(sass@1.83.4)(terser@5.37.0) + vite: 5.4.13(@types/node@18.19.61)(sass@1.83.4)(terser@5.37.0) vue: 3.5.13(typescript@5.7.3) - '@vitejs/plugin-vue@5.2.1(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3))': + '@vitejs/plugin-vue@5.2.1(vite@6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3))': dependencies: - vite: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) + vite: 6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) vue: 3.5.13(typescript@5.7.3) '@vitest/coverage-v8@2.1.8(vitest@3.0.2(@types/node@18.19.61)(jiti@2.4.2)(jsdom@19.0.0)(sass@1.83.4)(terser@5.37.0))': @@ -8917,13 +8722,13 @@ snapshots: chai: 5.1.2 tinyrainbow: 2.0.0 - '@vitest/mocker@3.0.2(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))': + '@vitest/mocker@3.0.2(vite@6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0))': dependencies: '@vitest/spy': 3.0.2 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: - vite: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) + vite: 6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) '@vitest/pretty-format@3.0.2': dependencies: @@ -9106,15 +8911,14 @@ snapshots: js-beautify: 1.15.1 vue-component-type-helpers: 2.2.0 - '@vueuse/core@11.3.0(@vue/composition-api@1.7.2(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3))': + '@vueuse/core@12.4.0(typescript@5.7.3)': dependencies: '@types/web-bluetooth': 0.0.20 - '@vueuse/metadata': 11.3.0 - '@vueuse/shared': 11.3.0(@vue/composition-api@1.7.2(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3)) - vue-demi: 0.14.10(@vue/composition-api@1.7.2(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3)) + '@vueuse/metadata': 12.4.0 + '@vueuse/shared': 12.4.0(typescript@5.7.3) + vue: 3.5.13(typescript@5.7.3) transitivePeerDependencies: - - '@vue/composition-api' - - vue + - typescript '@vueuse/core@9.13.0(@vue/composition-api@1.7.2(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3))': dependencies: @@ -9126,30 +8930,28 @@ snapshots: - '@vue/composition-api' - vue - '@vueuse/integrations@11.3.0(@vue/composition-api@1.7.2(vue@3.5.13(typescript@5.7.3)))(async-validator@4.2.5)(focus-trap@7.6.4)(qrcode@1.5.4)(sortablejs@1.15.6)(vue@3.5.13(typescript@5.7.3))': + '@vueuse/integrations@12.4.0(async-validator@4.2.5)(focus-trap@7.6.4)(qrcode@1.5.4)(sortablejs@1.15.6)(typescript@5.7.3)': dependencies: - '@vueuse/core': 11.3.0(@vue/composition-api@1.7.2(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3)) - '@vueuse/shared': 11.3.0(@vue/composition-api@1.7.2(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3)) - vue-demi: 0.14.10(@vue/composition-api@1.7.2(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3)) + '@vueuse/core': 12.4.0(typescript@5.7.3) + '@vueuse/shared': 12.4.0(typescript@5.7.3) + vue: 3.5.13(typescript@5.7.3) optionalDependencies: async-validator: 4.2.5 focus-trap: 7.6.4 qrcode: 1.5.4 sortablejs: 1.15.6 transitivePeerDependencies: - - '@vue/composition-api' - - vue + - typescript - '@vueuse/metadata@11.3.0': {} + '@vueuse/metadata@12.4.0': {} '@vueuse/metadata@9.13.0': {} - '@vueuse/shared@11.3.0(@vue/composition-api@1.7.2(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3))': + '@vueuse/shared@12.4.0(typescript@5.7.3)': dependencies: - vue-demi: 0.14.10(@vue/composition-api@1.7.2(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3)) + vue: 3.5.13(typescript@5.7.3) transitivePeerDependencies: - - '@vue/composition-api' - - vue + - typescript '@vueuse/shared@9.13.0(@vue/composition-api@1.7.2(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3))': dependencies: @@ -9205,7 +9007,7 @@ snapshots: ajv@8.17.1: dependencies: fast-deep-equal: 3.1.3 - fast-uri: 3.0.5 + fast-uri: 3.0.6 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 @@ -9415,7 +9217,7 @@ snapshots: browserslist@4.24.4: dependencies: caniuse-lite: 1.0.30001695 - electron-to-chromium: 1.5.83 + electron-to-chromium: 1.5.84 node-releases: 2.0.19 update-browserslist-db: 1.1.2(browserslist@4.24.4) @@ -9600,8 +9402,6 @@ snapshots: commander@8.3.0: {} - commander@9.5.0: {} - commitizen@4.3.1(@types/node@18.19.61)(typescript@5.7.3): dependencies: cachedir: 2.3.0 @@ -9987,7 +9787,7 @@ snapshots: minimatch: 9.0.1 semver: 7.6.3 - electron-to-chromium@1.5.83: {} + electron-to-chromium@1.5.84: {} element-plus@2.9.3(@vue/composition-api@1.7.2(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3)): dependencies: @@ -10480,7 +10280,7 @@ snapshots: fast-levenshtein@2.0.6: {} - fast-uri@3.0.5: {} + fast-uri@3.0.6: {} fastq@1.18.0: dependencies: @@ -11465,8 +11265,6 @@ snapshots: mute-stream@0.0.8: {} - mylas@2.1.13: {} - nanoid@3.3.8: {} natural-compare-lite@1.4.0: {} @@ -11706,10 +11504,6 @@ snapshots: dependencies: semver-compare: 1.0.0 - plimit-lit@1.6.1: - dependencies: - queue-lit: 1.5.2 - pngjs@5.0.0: {} possible-typed-array-names@1.0.0: {} @@ -11764,8 +11558,6 @@ snapshots: querystringify@2.2.0: {} - queue-lit@1.5.2: {} - queue-microtask@1.2.3: {} quick-lru@4.0.1: {} @@ -11817,7 +11609,7 @@ snapshots: dependencies: find-up: 6.3.0 read-pkg: 8.1.0 - type-fest: 4.32.0 + type-fest: 4.33.0 read-pkg-up@7.0.1: dependencies: @@ -11837,7 +11629,7 @@ snapshots: '@types/normalize-package-data': 2.4.4 normalize-package-data: 6.0.2 parse-json: 7.1.1 - type-fest: 4.32.0 + type-fest: 4.33.0 readable-stream@3.6.2: dependencies: @@ -12146,14 +11938,14 @@ snapshots: interpret: 1.4.0 rechoir: 0.6.2 - shiki@1.29.1: + shiki@2.0.3: dependencies: - '@shikijs/core': 1.29.1 - '@shikijs/engine-javascript': 1.29.1 - '@shikijs/engine-oniguruma': 1.29.1 - '@shikijs/langs': 1.29.1 - '@shikijs/themes': 1.29.1 - '@shikijs/types': 1.29.1 + '@shikijs/core': 2.0.3 + '@shikijs/engine-javascript': 2.0.3 + '@shikijs/engine-oniguruma': 2.0.3 + '@shikijs/langs': 2.0.3 + '@shikijs/themes': 2.0.3 + '@shikijs/types': 2.0.3 '@shikijs/vscode-textmate': 10.0.1 '@types/hast': 3.0.4 @@ -12476,15 +12268,6 @@ snapshots: dependencies: typescript: 5.7.3 - tsc-alias@1.8.10: - dependencies: - chokidar: 3.6.0 - commander: 9.5.0 - globby: 11.1.0 - mylas: 2.1.13 - normalize-path: 3.0.0 - plimit-lit: 1.6.1 - tsconfig-paths@3.15.0: dependencies: '@types/json5': 0.0.29 @@ -12517,7 +12300,7 @@ snapshots: type-fest@3.13.1: {} - type-fest@4.32.0: {} + type-fest@4.33.0: {} typed-array-buffer@1.0.3: dependencies: @@ -12633,7 +12416,7 @@ snapshots: universalify@2.0.1: {} - unplugin-auto-import@0.12.2(@vueuse/core@11.3.0(@vue/composition-api@1.7.2(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3)))(rollup@4.31.0): + unplugin-auto-import@0.12.2(@vueuse/core@12.4.0(typescript@5.7.3))(rollup@4.31.0): dependencies: '@antfu/utils': 0.7.10 '@rollup/pluginutils': 5.1.4(rollup@4.31.0) @@ -12642,7 +12425,7 @@ snapshots: unimport: 2.2.4(rollup@4.31.0) unplugin: 1.16.1 optionalDependencies: - '@vueuse/core': 11.3.0(@vue/composition-api@1.7.2(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3)) + '@vueuse/core': 12.4.0(typescript@5.7.3) transitivePeerDependencies: - rollup @@ -12716,7 +12499,7 @@ snapshots: debug: 4.4.0(supports-color@8.1.1) es-module-lexer: 1.6.0 pathe: 2.0.2 - vite: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) + vite: 6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) transitivePeerDependencies: - '@types/node' - jiti @@ -12731,7 +12514,7 @@ snapshots: - tsx - yaml - vite@5.4.12(@types/node@18.19.61)(sass@1.83.4)(terser@5.37.0): + vite@5.4.13(@types/node@18.19.61)(sass@1.83.4)(terser@5.37.0): dependencies: esbuild: 0.21.5 postcss: 8.5.1 @@ -12742,7 +12525,7 @@ snapshots: sass: 1.83.4 terser: 5.37.0 - vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0): + vite@6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0): dependencies: esbuild: 0.24.2 postcss: 8.5.1 @@ -12754,25 +12537,25 @@ snapshots: sass: 1.83.4 terser: 5.37.0 - vitepress@1.5.0(@algolia/client-search@5.19.0)(@types/node@18.19.61)(@types/react@18.3.18)(@vue/composition-api@1.7.2(vue@3.5.13(typescript@5.7.3)))(async-validator@4.2.5)(postcss@8.5.1)(qrcode@1.5.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.83.4)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.37.0)(typescript@5.7.3): + vitepress@1.6.1(@algolia/client-search@5.19.0)(@types/node@18.19.61)(@types/react@18.3.18)(async-validator@4.2.5)(postcss@8.5.1)(qrcode@1.5.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.83.4)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.37.0)(typescript@5.7.3): dependencies: '@docsearch/css': 3.8.2 '@docsearch/js': 3.8.2(@algolia/client-search@5.19.0)(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.3) - '@iconify-json/simple-icons': 1.2.20 - '@shikijs/core': 1.29.1 - '@shikijs/transformers': 1.29.1 - '@shikijs/types': 1.29.1 + '@iconify-json/simple-icons': 1.2.21 + '@shikijs/core': 2.0.3 + '@shikijs/transformers': 2.0.3 + '@shikijs/types': 2.0.3 '@types/markdown-it': 14.1.2 - '@vitejs/plugin-vue': 5.2.1(vite@5.4.12(@types/node@18.19.61)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3)) + '@vitejs/plugin-vue': 5.2.1(vite@5.4.13(@types/node@18.19.61)(sass@1.83.4)(terser@5.37.0))(vue@3.5.13(typescript@5.7.3)) '@vue/devtools-api': 7.7.0 '@vue/shared': 3.5.13 - '@vueuse/core': 11.3.0(@vue/composition-api@1.7.2(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3)) - '@vueuse/integrations': 11.3.0(@vue/composition-api@1.7.2(vue@3.5.13(typescript@5.7.3)))(async-validator@4.2.5)(focus-trap@7.6.4)(qrcode@1.5.4)(sortablejs@1.15.6)(vue@3.5.13(typescript@5.7.3)) + '@vueuse/core': 12.4.0(typescript@5.7.3) + '@vueuse/integrations': 12.4.0(async-validator@4.2.5)(focus-trap@7.6.4)(qrcode@1.5.4)(sortablejs@1.15.6)(typescript@5.7.3) focus-trap: 7.6.4 mark.js: 8.11.1 minisearch: 7.1.1 - shiki: 1.29.1 - vite: 5.4.12(@types/node@18.19.61)(sass@1.83.4)(terser@5.37.0) + shiki: 2.0.3 + vite: 5.4.13(@types/node@18.19.61)(sass@1.83.4)(terser@5.37.0) vue: 3.5.13(typescript@5.7.3) optionalDependencies: postcss: 8.5.1 @@ -12780,7 +12563,6 @@ snapshots: - '@algolia/client-search' - '@types/node' - '@types/react' - - '@vue/composition-api' - async-validator - axios - change-case @@ -12807,7 +12589,7 @@ snapshots: vitest@3.0.2(@types/node@18.19.61)(jiti@2.4.2)(jsdom@19.0.0)(sass@1.83.4)(terser@5.37.0): dependencies: '@vitest/expect': 3.0.2 - '@vitest/mocker': 3.0.2(vite@6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0)) + '@vitest/mocker': 3.0.2(vite@6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0)) '@vitest/pretty-format': 3.0.2 '@vitest/runner': 3.0.2 '@vitest/snapshot': 3.0.2 @@ -12823,7 +12605,7 @@ snapshots: tinyexec: 0.3.2 tinypool: 1.0.2 tinyrainbow: 2.0.0 - vite: 6.0.9(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) + vite: 6.0.10(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) vite-node: 3.0.2(@types/node@18.19.61)(jiti@2.4.2)(sass@1.83.4)(terser@5.37.0) why-is-node-running: 2.3.0 optionalDependencies: diff --git a/runtime/react/package.json b/runtime/react/package.json index fd6073c2..a1d92b5d 100644 --- a/runtime/react/package.json +++ b/runtime/react/package.json @@ -37,6 +37,6 @@ "@vitejs/plugin-legacy": "^6.0.0", "@vitejs/plugin-react-refresh": "^1.3.1", "typescript": "^5.7.3", - "vite": "^6.0.9" + "vite": "^6.0.10" } } diff --git a/runtime/tmagic-form/package.json b/runtime/tmagic-form/package.json index 43b0a453..b97d8b93 100644 --- a/runtime/tmagic-form/package.json +++ b/runtime/tmagic-form/package.json @@ -51,7 +51,7 @@ "@vitejs/plugin-vue": "^5.2.1", "@vue/compiler-sfc": "^3.5.13", "rimraf": "^3.0.2", - "vite": "^6.0.9", + "vite": "^6.0.10", "vue-tsc": "^2.2.0" } } diff --git a/runtime/vue2/package.json b/runtime/vue2/package.json index 0d2d5e5e..ff1cf36f 100644 --- a/runtime/vue2/package.json +++ b/runtime/vue2/package.json @@ -33,7 +33,7 @@ "rollup": "^4.31.0", "rollup-plugin-external-globals": "^0.10.0", "sass": "^1.83.0", - "vite": "^6.0.9", + "vite": "^6.0.10", "@vitejs/plugin-legacy": "^6.0.0", "@vitejs/plugin-vue2": "^2.3.1", "vue-template-compiler": "^2.7.4" diff --git a/runtime/vue3/package.json b/runtime/vue3/package.json index 35b0a4fb..818fe1b9 100644 --- a/runtime/vue3/package.json +++ b/runtime/vue3/package.json @@ -37,6 +37,6 @@ "sass": "^1.83.0", "terser": "^5.31.6", "typescript": "^5.7.3", - "vite": "^6.0.9" + "vite": "^6.0.10" } } diff --git a/scripts/build.mjs b/scripts/build.mjs new file mode 100644 index 00000000..d85689a0 --- /dev/null +++ b/scripts/build.mjs @@ -0,0 +1,96 @@ +import fs from 'node:fs'; +import { createRequire } from 'node:module'; +import path from 'node:path'; +import { fileURLToPath } from 'node:url'; + +import { build as buildVite } from 'vite'; +import vue from '@vitejs/plugin-vue'; +import minimist from 'minimist'; +import rimraf from 'rimraf'; + +const args = minimist(process.argv.slice(2)); + +const toPascalCase = (str) => str.replace(/(^\w|-\w)/g, (text) => text.replace(/-/, '').toUpperCase()); + +const __dirname = path.dirname(fileURLToPath(import.meta.url)); +const packagesDir = path.resolve(__dirname, '../packages'); + +if (args.package) { + const pkgRoot = path.resolve(packagesDir, args.package); + if (fs.statSync(pkgRoot).isDirectory()) { + rimraf.sync(path.resolve(packagesDir, `./${args.package}/dist`)); + + build({ packageName: args.package, format: 'es' }); + build({ packageName: args.package, format: 'umd' }); + } +} else { + const packages = fs.readdirSync(packagesDir).filter((p) => { + const pkgRoot = path.resolve(packagesDir, p); + if (fs.statSync(pkgRoot).isDirectory()) { + const pkg = JSON.parse(fs.readFileSync(path.resolve(pkgRoot, 'package.json'), 'utf-8')); + return !pkg.private && !pkg.bin; + } + return false; + }); + + for (const packageName of packages) { + rimraf.sync(path.resolve(packagesDir, `./${packageName}/dist`)); + + build({ packageName, format: 'es' }); + build({ packageName, format: 'umd' }); + } +} + +async function build({ packageName, format }) { + const pkg = createRequire(import.meta.url)(`../packages/${packageName}/package.json`); + + await buildVite({ + root: path.resolve(packagesDir, `./${packageName}`), + clearScreen: false, + configFile: false, + plugins: [vue()], + + build: { + emptyOutDir: false, + cssCodeSplit: false, + sourcemap: false, + minify: false, + target: 'esnext', + + lib: { + entry: 'src/index.ts', + name: `TMagic${toPascalCase(packageName)}`, + fileName: `tmagic-${packageName}`, + formats: [format], + }, + + rollupOptions: { + // 确保外部化处理那些你不想打包进库的依赖 + external(id) { + if (format === 'umd' && id === 'lodash-es') { + return false; + } + return Object.keys({ + ...pkg.dependencies, + ...pkg.peerDependencies, + }).some((k) => new RegExp(`^${k}`).test(id)); + }, + + output: { + // 在 UMD 构建模式下为这些外部化的依赖提供一个全局变量 + globals: { + vue: 'Vue', + 'element-plus': 'ElementPlus', + }, + }, + }, + }, + + resolve: { + alias: [ + { find: /^@data-source/, replacement: path.join(packagesDir, '/data-source/src') }, + { find: /^@editor/, replacement: path.join(packagesDir, './editor/src') }, + ], + }, + }); +} diff --git a/scripts/release.mjs b/scripts/release.mjs index d1867008..6ff74901 100644 --- a/scripts/release.mjs +++ b/scripts/release.mjs @@ -1,11 +1,12 @@ // @ts-check -import enquirer from 'enquirer'; -import execa from 'execa'; -import minimist from 'minimist'; import fs from 'node:fs'; import { createRequire } from 'node:module'; import path from 'node:path'; import { fileURLToPath } from 'node:url'; + +import enquirer from 'enquirer'; +import execa from 'execa'; +import minimist from 'minimist'; import pico from 'picocolors'; import semver from 'semver'; @@ -35,7 +36,8 @@ const args = minimist(process.argv.slice(2), { const preId = args.preid || semver.prerelease(currentVersion)?.[0]; const isDryRun = args.dry; /** @type {boolean | undefined} */ -let { skipTests } = args; +// eslint-disable-next-line prefer-destructuring +let skipTests = args.skipTests; const { skipBuild } = args; const skipPrompts = args.skipPrompts || args.canary; const skipGit = args.skipGit || args.canary; @@ -335,7 +337,7 @@ function updatePackage(pkgRoot, version, getNewPackageName, updateDep = false) { /** * @param {Package} pkg - * @param {'dependencies' | 'peerDependencies'} depType + * @param {'dependencies' | 'peerDependencies' | 'devDependencies'} depType * @param {string} version */ function updateDeps(pkg, depType, version) {