mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
chore: release v1.1.5
This commit is contained in:
parent
b835bb2488
commit
cebb152416
20
CHANGELOG.md
20
CHANGELOG.md
@ -1,3 +1,23 @@
|
||||
## [1.1.5](https://github.com/Tencent/tmagic-editor/compare/v1.1.4...v1.1.5) (2022-09-20)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **core:** 多个组件配置同一事件会导致此事件多次监听 ([b835bb2](https://github.com/Tencent/tmagic-editor/commit/b835bb24888db3ee150192ef10726de8f7c5ec3b)), closes [#356](https://github.com/Tencent/tmagic-editor/issues/356)
|
||||
* **editor:** code-link组件内容不更新 ([e069783](https://github.com/Tencent/tmagic-editor/commit/e0697833dab7b2b3850b955312ca1e71379cf848))
|
||||
* **editor:** layout ([30bb39d](https://github.com/Tencent/tmagic-editor/commit/30bb39d71ae481cc55c3c98824e74f502f48a23d))
|
||||
* **editor:** 添加组件后,只有在位置有调整的情况才再次更新组件 ([22c57f4](https://github.com/Tencent/tmagic-editor/commit/22c57f444fdf760bfcfa1d5a72303109609bbb2c))
|
||||
* **form:** link组件parentValues没有传递下去 ([d76c753](https://github.com/Tencent/tmagic-editor/commit/d76c753483c085afc7b062a240fa0e89450ba910))
|
||||
* **playgound:** npm run serve后runtime无法打开 ([ddf0fcd](https://github.com/Tencent/tmagic-editor/commit/ddf0fcdecce14a924ffbd3690a36fff467ca98bc)), closes [#352](https://github.com/Tencent/tmagic-editor/issues/352)
|
||||
* **playground:** npm run dev后proxy失效 ([6d6490a](https://github.com/Tencent/tmagic-editor/commit/6d6490ab311696e1b525f73d994837a04bd08d10))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **editor:** 新增Layout ([835189a](https://github.com/Tencent/tmagic-editor/commit/835189adc9c0047bdedc31ae0367c08c1cf6024d))
|
||||
|
||||
|
||||
|
||||
## [1.1.4](https://github.com/Tencent/tmagic-editor/compare/v1.1.3...v1.1.4) (2022-09-15)
|
||||
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "docs",
|
||||
"private": true,
|
||||
"version": "1.1.4",
|
||||
"version": "1.1.5",
|
||||
"scripts": {
|
||||
"clean:top": "rimraf dist",
|
||||
"dev": "vuepress dev src",
|
||||
@ -9,9 +9,9 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@element-plus/icons-vue": "^2.0.9",
|
||||
"@tmagic/form": "1.1.4",
|
||||
"@tmagic/schema": "1.1.4",
|
||||
"@tmagic/utils": "1.1.4",
|
||||
"@tmagic/form": "1.1.5",
|
||||
"@tmagic/schema": "1.1.5",
|
||||
"@tmagic/utils": "1.1.5",
|
||||
"element-plus": "^2.2.6",
|
||||
"highlight.js": "^11.2.0",
|
||||
"lodash": "^4.17.21",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.4",
|
||||
"version": "1.1.5",
|
||||
"name": "tmagic",
|
||||
"private": true,
|
||||
"packageManager": "pnpm@7.1.9",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.4",
|
||||
"version": "1.1.5",
|
||||
"name": "@tmagic/cli",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.4",
|
||||
"version": "1.1.5",
|
||||
"name": "@tmagic/core",
|
||||
"sideEffects": [
|
||||
"dist/*"
|
||||
@ -35,7 +35,7 @@
|
||||
"vue"
|
||||
],
|
||||
"dependencies": {
|
||||
"@tmagic/schema": "1.1.4",
|
||||
"@tmagic/schema": "1.1.5",
|
||||
"events": "^3.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.4",
|
||||
"version": "1.1.5",
|
||||
"name": "@tmagic/editor",
|
||||
"sideEffects": [
|
||||
"dist/*",
|
||||
@ -45,11 +45,11 @@
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.18.0",
|
||||
"@element-plus/icons-vue": "^2.0.9",
|
||||
"@tmagic/core": "1.1.4",
|
||||
"@tmagic/form": "1.1.4",
|
||||
"@tmagic/schema": "1.1.4",
|
||||
"@tmagic/stage": "1.1.4",
|
||||
"@tmagic/utils": "1.1.4",
|
||||
"@tmagic/core": "1.1.5",
|
||||
"@tmagic/form": "1.1.5",
|
||||
"@tmagic/schema": "1.1.5",
|
||||
"@tmagic/stage": "1.1.5",
|
||||
"@tmagic/utils": "1.1.5",
|
||||
"buffer": "^6.0.3",
|
||||
"color": "^3.1.3",
|
||||
"element-plus": "^2.2.6",
|
||||
@ -62,7 +62,7 @@
|
||||
"vue": "^3.2.37"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tmagic/form": "1.1.4",
|
||||
"@tmagic/form": "1.1.5",
|
||||
"element-plus": "^2.2.6",
|
||||
"monaco-editor": "^0.34.0",
|
||||
"vue": "^3.2.37"
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.4",
|
||||
"version": "1.1.5",
|
||||
"name": "@tmagic/form",
|
||||
"sideEffects": [
|
||||
"dist/*",
|
||||
@ -35,7 +35,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@element-plus/icons-vue": "^2.0.9",
|
||||
"@tmagic/utils": "1.1.4",
|
||||
"@tmagic/utils": "1.1.5",
|
||||
"element-plus": "^2.2.6",
|
||||
"lodash-es": "^4.17.21",
|
||||
"sortablejs": "^1.14.0",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.4",
|
||||
"version": "1.1.5",
|
||||
"name": "@tmagic/schema",
|
||||
"sideEffects": false,
|
||||
"main": "dist/tmagic-schema.umd.js",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.4",
|
||||
"version": "1.1.5",
|
||||
"name": "@tmagic/stage",
|
||||
"sideEffects": [
|
||||
"dist/*"
|
||||
@ -29,9 +29,9 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@scena/guides": "^0.17.0",
|
||||
"@tmagic/core": "1.1.4",
|
||||
"@tmagic/schema": "1.1.4",
|
||||
"@tmagic/utils": "1.1.4",
|
||||
"@tmagic/core": "1.1.5",
|
||||
"@tmagic/schema": "1.1.5",
|
||||
"@tmagic/utils": "1.1.5",
|
||||
"events": "^3.3.0",
|
||||
"keycon": "^1.1.2",
|
||||
"lodash-es": "^4.17.21",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.4",
|
||||
"version": "1.1.5",
|
||||
"name": "@tmagic/table",
|
||||
"sideEffects": [
|
||||
"dist/*"
|
||||
@ -32,14 +32,14 @@
|
||||
"url": "https://github.com/Tencent/tmagic-editor.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@tmagic/form": "1.1.4",
|
||||
"@tmagic/utils": "1.1.4",
|
||||
"@tmagic/form": "1.1.5",
|
||||
"@tmagic/utils": "1.1.5",
|
||||
"element-plus": "^2.2.6",
|
||||
"lodash-es": "^4.17.21",
|
||||
"vue": "^3.2.37"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tmagic/form": "1.1.4",
|
||||
"@tmagic/form": "1.1.5",
|
||||
"element-plus": "^2.2.6",
|
||||
"vue": "^3.2.37"
|
||||
},
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@tmagic/ui-react",
|
||||
"version": "1.1.4",
|
||||
"version": "1.1.5",
|
||||
"main": "src/index.ts",
|
||||
"engines": {
|
||||
"node": ">=14"
|
||||
@ -13,8 +13,8 @@
|
||||
"react:build": "tsc && vite build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@tmagic/core": "1.1.4",
|
||||
"@tmagic/schema": "1.1.4",
|
||||
"@tmagic/core": "1.1.5",
|
||||
"@tmagic/schema": "1.1.5",
|
||||
"qrcode": "^1.5.0",
|
||||
"react": "^17.0.0",
|
||||
"react-dom": "^17.0.0"
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.4",
|
||||
"version": "1.1.5",
|
||||
"name": "@tmagic/ui-vue2",
|
||||
"main": "src/index.ts",
|
||||
"engines": {
|
||||
@ -10,9 +10,9 @@
|
||||
"url": "https://github.com/Tencent/tmagic-editor.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@tmagic/core": "1.1.4",
|
||||
"@tmagic/schema": "1.1.4",
|
||||
"@tmagic/utils": "1.1.4",
|
||||
"@tmagic/core": "1.1.5",
|
||||
"@tmagic/schema": "1.1.5",
|
||||
"@tmagic/utils": "1.1.5",
|
||||
"qrcode": "^1.5.0",
|
||||
"vue": "^2.7.4"
|
||||
},
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.4",
|
||||
"version": "1.1.5",
|
||||
"name": "@tmagic/ui",
|
||||
"main": "src/index.ts",
|
||||
"engines": {
|
||||
@ -11,9 +11,9 @@
|
||||
"url": "https://github.com/Tencent/tmagic-editor.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@tmagic/core": "1.1.4",
|
||||
"@tmagic/schema": "1.1.4",
|
||||
"@tmagic/utils": "1.1.4",
|
||||
"@tmagic/core": "1.1.5",
|
||||
"@tmagic/schema": "1.1.5",
|
||||
"@tmagic/utils": "1.1.5",
|
||||
"delegate": "^3.2.0",
|
||||
"qrcode": "^1.5.0",
|
||||
"tiny-emitter": "^2.1.0",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.4",
|
||||
"version": "1.1.5",
|
||||
"name": "@tmagic/utils",
|
||||
"main": "dist/tmagic-utils.umd.js",
|
||||
"module": "dist/tmagic-utils.mjs",
|
||||
@ -24,7 +24,7 @@
|
||||
"url": "https://github.com/Tencent/tmagic-editor.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@tmagic/schema": "1.1.4",
|
||||
"@tmagic/schema": "1.1.5",
|
||||
"dayjs": "^1.11.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tmagic-playground",
|
||||
"version": "1.1.4",
|
||||
"version": "1.1.5",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"clean:top": "rimraf dist",
|
||||
@ -12,11 +12,11 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@element-plus/icons-vue": "^2.0.9",
|
||||
"@tmagic/editor": "1.1.4",
|
||||
"@tmagic/form": "1.1.4",
|
||||
"@tmagic/schema": "1.1.4",
|
||||
"@tmagic/stage": "1.1.4",
|
||||
"@tmagic/utils": "1.1.4",
|
||||
"@tmagic/editor": "1.1.5",
|
||||
"@tmagic/form": "1.1.5",
|
||||
"@tmagic/schema": "1.1.5",
|
||||
"@tmagic/stage": "1.1.5",
|
||||
"@tmagic/utils": "1.1.5",
|
||||
"element-plus": "^2.2.6",
|
||||
"monaco-editor": "^0.34.0",
|
||||
"serialize-javascript": "^6.0.0",
|
||||
|
94
pnpm-lock.yaml
generated
94
pnpm-lock.yaml
generated
@ -75,9 +75,9 @@ importers:
|
||||
docs:
|
||||
specifiers:
|
||||
'@element-plus/icons-vue': ^2.0.9
|
||||
'@tmagic/form': 1.1.4
|
||||
'@tmagic/schema': 1.1.4
|
||||
'@tmagic/utils': 1.1.4
|
||||
'@tmagic/form': 1.1.5
|
||||
'@tmagic/schema': 1.1.5
|
||||
'@tmagic/utils': 1.1.5
|
||||
'@vuepress/bundler-vite': ^2.0.0-beta.51
|
||||
'@vuepress/cli': ^2.0.0-beta.51
|
||||
'@vuepress/client': ^2.0.0-beta.51
|
||||
@ -134,7 +134,7 @@ importers:
|
||||
|
||||
packages/core:
|
||||
specifiers:
|
||||
'@tmagic/schema': 1.1.4
|
||||
'@tmagic/schema': 1.1.5
|
||||
'@types/events': ^3.0.0
|
||||
'@types/node': ^15.12.4
|
||||
events: ^3.3.0
|
||||
@ -155,11 +155,11 @@ importers:
|
||||
specifiers:
|
||||
'@babel/core': ^7.18.0
|
||||
'@element-plus/icons-vue': ^2.0.9
|
||||
'@tmagic/core': 1.1.4
|
||||
'@tmagic/form': 1.1.4
|
||||
'@tmagic/schema': 1.1.4
|
||||
'@tmagic/stage': 1.1.4
|
||||
'@tmagic/utils': 1.1.4
|
||||
'@tmagic/core': 1.1.5
|
||||
'@tmagic/form': 1.1.5
|
||||
'@tmagic/schema': 1.1.5
|
||||
'@tmagic/stage': 1.1.5
|
||||
'@tmagic/utils': 1.1.5
|
||||
'@types/events': ^3.0.0
|
||||
'@types/lodash-es': ^4.17.4
|
||||
'@types/node': ^15.12.4
|
||||
@ -218,7 +218,7 @@ importers:
|
||||
specifiers:
|
||||
'@babel/core': ^7.18.0
|
||||
'@element-plus/icons-vue': ^2.0.9
|
||||
'@tmagic/utils': 1.1.4
|
||||
'@tmagic/utils': 1.1.5
|
||||
'@types/lodash-es': ^4.17.4
|
||||
'@types/node': ^15.12.4
|
||||
'@types/sortablejs': ^1.10.7
|
||||
@ -270,9 +270,9 @@ importers:
|
||||
packages/stage:
|
||||
specifiers:
|
||||
'@scena/guides': ^0.17.0
|
||||
'@tmagic/core': 1.1.4
|
||||
'@tmagic/schema': 1.1.4
|
||||
'@tmagic/utils': 1.1.4
|
||||
'@tmagic/core': 1.1.5
|
||||
'@tmagic/schema': 1.1.5
|
||||
'@tmagic/utils': 1.1.5
|
||||
'@types/events': ^3.0.0
|
||||
'@types/lodash-es': ^4.17.4
|
||||
'@types/node': ^15.12.4
|
||||
@ -306,8 +306,8 @@ importers:
|
||||
|
||||
packages/table:
|
||||
specifiers:
|
||||
'@tmagic/form': 1.1.4
|
||||
'@tmagic/utils': 1.1.4
|
||||
'@tmagic/form': 1.1.5
|
||||
'@tmagic/utils': 1.1.5
|
||||
'@types/color': ^3.0.1
|
||||
'@types/lodash-es': ^4.17.4
|
||||
'@types/node': ^15.12.4
|
||||
@ -344,9 +344,9 @@ importers:
|
||||
packages/ui:
|
||||
specifiers:
|
||||
'@testing-library/vue': ^6.4.2
|
||||
'@tmagic/core': 1.1.4
|
||||
'@tmagic/schema': 1.1.4
|
||||
'@tmagic/utils': 1.1.4
|
||||
'@tmagic/core': 1.1.5
|
||||
'@tmagic/schema': 1.1.5
|
||||
'@tmagic/utils': 1.1.5
|
||||
'@types/qrcode': ^1.4.2
|
||||
'@vue/compiler-sfc': ^3.2.37
|
||||
'@vue/test-utils': ^2.0.0
|
||||
@ -370,8 +370,8 @@ importers:
|
||||
|
||||
packages/ui-react:
|
||||
specifiers:
|
||||
'@tmagic/core': 1.1.4
|
||||
'@tmagic/schema': 1.1.4
|
||||
'@tmagic/core': 1.1.5
|
||||
'@tmagic/schema': 1.1.5
|
||||
'@types/react': ^17.0.37
|
||||
'@types/react-dom': ^17.0.11
|
||||
qrcode: ^1.5.0
|
||||
@ -391,9 +391,9 @@ importers:
|
||||
|
||||
packages/ui-vue2:
|
||||
specifiers:
|
||||
'@tmagic/core': 1.1.4
|
||||
'@tmagic/schema': 1.1.4
|
||||
'@tmagic/utils': 1.1.4
|
||||
'@tmagic/core': 1.1.5
|
||||
'@tmagic/schema': 1.1.5
|
||||
'@tmagic/utils': 1.1.5
|
||||
qrcode: ^1.5.0
|
||||
vite: ^3.1.3
|
||||
vue: ^2.7.4
|
||||
@ -410,7 +410,7 @@ importers:
|
||||
|
||||
packages/utils:
|
||||
specifiers:
|
||||
'@tmagic/schema': 1.1.4
|
||||
'@tmagic/schema': 1.1.5
|
||||
'@types/node': ^15.12.4
|
||||
dayjs: ^1.11.4
|
||||
rimraf: ^3.0.2
|
||||
@ -428,11 +428,11 @@ importers:
|
||||
playground:
|
||||
specifiers:
|
||||
'@element-plus/icons-vue': ^2.0.9
|
||||
'@tmagic/editor': 1.1.4
|
||||
'@tmagic/form': 1.1.4
|
||||
'@tmagic/schema': 1.1.4
|
||||
'@tmagic/stage': 1.1.4
|
||||
'@tmagic/utils': 1.1.4
|
||||
'@tmagic/editor': 1.1.5
|
||||
'@tmagic/form': 1.1.5
|
||||
'@tmagic/schema': 1.1.5
|
||||
'@tmagic/stage': 1.1.5
|
||||
'@tmagic/utils': 1.1.5
|
||||
'@types/node': ^15.12.4
|
||||
'@types/serialize-javascript': ^5.0.1
|
||||
'@vitejs/plugin-legacy': ^2.2.0
|
||||
@ -476,12 +476,12 @@ importers:
|
||||
|
||||
runtime/react:
|
||||
specifiers:
|
||||
'@tmagic/cli': 1.1.4
|
||||
'@tmagic/core': 1.1.4
|
||||
'@tmagic/schema': 1.1.4
|
||||
'@tmagic/stage': 1.1.4
|
||||
'@tmagic/ui-react': 1.1.4
|
||||
'@tmagic/utils': 1.1.4
|
||||
'@tmagic/cli': 1.1.5
|
||||
'@tmagic/core': 1.1.5
|
||||
'@tmagic/schema': 1.1.5
|
||||
'@tmagic/stage': 1.1.5
|
||||
'@tmagic/ui-react': 1.1.5
|
||||
'@tmagic/utils': 1.1.5
|
||||
'@types/react': ^17.0.37
|
||||
'@types/react-dom': ^17.0.11
|
||||
'@vitejs/plugin-legacy': ^2.2.0
|
||||
@ -515,12 +515,12 @@ importers:
|
||||
|
||||
runtime/vue2:
|
||||
specifiers:
|
||||
'@tmagic/cli': 1.1.4
|
||||
'@tmagic/core': 1.1.4
|
||||
'@tmagic/schema': 1.1.4
|
||||
'@tmagic/stage': 1.1.4
|
||||
'@tmagic/ui-vue2': 1.1.4
|
||||
'@tmagic/utils': 1.1.4
|
||||
'@tmagic/cli': 1.1.5
|
||||
'@tmagic/core': 1.1.5
|
||||
'@tmagic/schema': 1.1.5
|
||||
'@tmagic/stage': 1.1.5
|
||||
'@tmagic/ui-vue2': 1.1.5
|
||||
'@tmagic/utils': 1.1.5
|
||||
'@types/events': ^3.0.0
|
||||
'@vitejs/plugin-legacy': ^2.2.0
|
||||
'@vitejs/plugin-vue2': ^1.1.2
|
||||
@ -556,12 +556,12 @@ importers:
|
||||
|
||||
runtime/vue3:
|
||||
specifiers:
|
||||
'@tmagic/cli': 1.1.4
|
||||
'@tmagic/core': 1.1.4
|
||||
'@tmagic/schema': 1.1.4
|
||||
'@tmagic/stage': 1.1.4
|
||||
'@tmagic/ui': 1.1.4
|
||||
'@tmagic/utils': 1.1.4
|
||||
'@tmagic/cli': 1.1.5
|
||||
'@tmagic/core': 1.1.5
|
||||
'@tmagic/schema': 1.1.5
|
||||
'@tmagic/stage': 1.1.5
|
||||
'@tmagic/ui': 1.1.5
|
||||
'@tmagic/utils': 1.1.5
|
||||
'@types/node': ^15.12.4
|
||||
'@vitejs/plugin-legacy': ^2.2.0
|
||||
'@vitejs/plugin-vue': ^3.1.0
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "runtime-react",
|
||||
"version": "1.1.4",
|
||||
"version": "1.1.5",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev:react": "npm run build:libs && vite --config dev.vite.config.ts",
|
||||
@ -20,12 +20,12 @@
|
||||
"build:event:admin": "vite build --config build.vite.config.ts --mode event:admin"
|
||||
},
|
||||
"dependencies": {
|
||||
"@tmagic/cli": "1.1.4",
|
||||
"@tmagic/core": "1.1.4",
|
||||
"@tmagic/ui-react": "1.1.4",
|
||||
"@tmagic/schema": "1.1.4",
|
||||
"@tmagic/stage": "1.1.4",
|
||||
"@tmagic/utils": "1.1.4",
|
||||
"@tmagic/cli": "1.1.5",
|
||||
"@tmagic/core": "1.1.5",
|
||||
"@tmagic/ui-react": "1.1.5",
|
||||
"@tmagic/schema": "1.1.5",
|
||||
"@tmagic/stage": "1.1.5",
|
||||
"@tmagic/utils": "1.1.5",
|
||||
"axios": "^0.25.0",
|
||||
"terser": "^5.14.2",
|
||||
"react": "^17.0.2",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "runtime-vue2",
|
||||
"version": "1.1.4",
|
||||
"version": "1.1.5",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev:vue2": "npm run build:libs && vite --config dev.vite.config.ts",
|
||||
@ -20,12 +20,12 @@
|
||||
"build:event:admin": "vite build --config build.vite.config.ts --mode event:admin"
|
||||
},
|
||||
"dependencies": {
|
||||
"@tmagic/cli": "1.1.4",
|
||||
"@tmagic/core": "1.1.4",
|
||||
"@tmagic/ui-vue2": "1.1.4",
|
||||
"@tmagic/schema": "1.1.4",
|
||||
"@tmagic/stage": "1.1.4",
|
||||
"@tmagic/utils": "1.1.4",
|
||||
"@tmagic/cli": "1.1.5",
|
||||
"@tmagic/core": "1.1.5",
|
||||
"@tmagic/ui-vue2": "1.1.5",
|
||||
"@tmagic/schema": "1.1.5",
|
||||
"@tmagic/stage": "1.1.5",
|
||||
"@tmagic/utils": "1.1.5",
|
||||
"axios": "^0.25.0",
|
||||
"terser": "^5.14.2",
|
||||
"vue": "^2.7.4"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "runtime-vue3",
|
||||
"version": "1.1.4",
|
||||
"version": "1.1.5",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "npm run build:libs && vite --config dev.vite.config.ts",
|
||||
@ -20,12 +20,12 @@
|
||||
"build:event:admin": "vite build --config build.vite.config.ts --mode event:admin"
|
||||
},
|
||||
"dependencies": {
|
||||
"@tmagic/cli": "1.1.4",
|
||||
"@tmagic/core": "1.1.4",
|
||||
"@tmagic/ui": "1.1.4",
|
||||
"@tmagic/schema": "1.1.4",
|
||||
"@tmagic/stage": "1.1.4",
|
||||
"@tmagic/utils": "1.1.4",
|
||||
"@tmagic/cli": "1.1.5",
|
||||
"@tmagic/core": "1.1.5",
|
||||
"@tmagic/ui": "1.1.5",
|
||||
"@tmagic/schema": "1.1.5",
|
||||
"@tmagic/stage": "1.1.5",
|
||||
"@tmagic/utils": "1.1.5",
|
||||
"@vitejs/plugin-legacy": "^2.2.0",
|
||||
"@vitejs/plugin-vue-jsx": "^1.3.10",
|
||||
"axios": "^0.25.0",
|
||||
|
Loading…
x
Reference in New Issue
Block a user