mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
chore: release v1.1.6
This commit is contained in:
parent
4643acb0f8
commit
66c5daca49
21
CHANGELOG.md
21
CHANGELOG.md
@ -1,3 +1,24 @@
|
||||
## [1.1.6](https://github.com/Tencent/tmagic-editor/compare/v1.1.5...v1.1.6) (2022-09-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **core:** 保证传参行为一致 ([b0419cd](https://github.com/Tencent/tmagic-editor/commit/b0419cdbaf8fab2ea17edd650fb10155913e69f7))
|
||||
* **core:** 修复emit 无node时的情况 ([34b628c](https://github.com/Tencent/tmagic-editor/commit/34b628cc07100b33dab462d19b299fbb4ad11676))
|
||||
* **core:** 修复多组件同一事件监听问题修改后导致的共通点击失效问题 ([a96d547](https://github.com/Tencent/tmagic-editor/commit/a96d547c20b1c808d5399dcb0435b56513b759ac))
|
||||
* **editor:** layer-node-content slot参数出错 ([4643acb](https://github.com/Tencent/tmagic-editor/commit/4643acb0f8c67c0bdb0fabecd5bf10e262a81aa1))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **cli:** 添加dynamicImport配置参数,用于设置是否使用import()来加载组件 ([c817ad6](https://github.com/Tencent/tmagic-editor/commit/c817ad6bb680a84453ef3d99de14c8d8a36b1f58)), closes [#366](https://github.com/Tencent/tmagic-editor/issues/366)
|
||||
* **editor:** 新增layer-node-content slot,用于定制组件树节点 ([cda0c41](https://github.com/Tencent/tmagic-editor/commit/cda0c41ad499e5e8ec7b66ddaae607ad96633c5a)), closes [#368](https://github.com/Tencent/tmagic-editor/issues/368)
|
||||
* **form:** table新增showIndex配置,用于控制是否显示行索引 ([560a3ac](https://github.com/Tencent/tmagic-editor/commit/560a3acfae2e467faa894ed16067ebeb941c6fef))
|
||||
* **form:** table配置支持showIndex用于控制行号 ([eb03ce3](https://github.com/Tencent/tmagic-editor/commit/eb03ce358fd1ccaeb1b2f82285804d1c24349262))
|
||||
* **runtime:** vue3使用dynamicImport ([a16a7e6](https://github.com/Tencent/tmagic-editor/commit/a16a7e6a4d8a072ca94f5c2c50a17bfbf70279af))
|
||||
|
||||
|
||||
|
||||
## [1.1.5](https://github.com/Tencent/tmagic-editor/compare/v1.1.4...v1.1.5) (2022-09-20)
|
||||
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "docs",
|
||||
"private": true,
|
||||
"version": "1.1.5",
|
||||
"version": "1.1.6",
|
||||
"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.5",
|
||||
"@tmagic/schema": "1.1.5",
|
||||
"@tmagic/utils": "1.1.5",
|
||||
"@tmagic/form": "1.1.6",
|
||||
"@tmagic/schema": "1.1.6",
|
||||
"@tmagic/utils": "1.1.6",
|
||||
"element-plus": "^2.2.17",
|
||||
"highlight.js": "^11.2.0",
|
||||
"lodash": "^4.17.21",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.5",
|
||||
"version": "1.1.6",
|
||||
"name": "tmagic",
|
||||
"private": true,
|
||||
"packageManager": "pnpm@7.1.9",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.5",
|
||||
"version": "1.1.6",
|
||||
"name": "@tmagic/cli",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.5",
|
||||
"version": "1.1.6",
|
||||
"name": "@tmagic/core",
|
||||
"sideEffects": [
|
||||
"dist/*"
|
||||
@ -35,7 +35,7 @@
|
||||
"vue"
|
||||
],
|
||||
"dependencies": {
|
||||
"@tmagic/schema": "1.1.5",
|
||||
"@tmagic/schema": "1.1.6",
|
||||
"events": "^3.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.5",
|
||||
"version": "1.1.6",
|
||||
"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.5",
|
||||
"@tmagic/form": "1.1.5",
|
||||
"@tmagic/schema": "1.1.5",
|
||||
"@tmagic/stage": "1.1.5",
|
||||
"@tmagic/utils": "1.1.5",
|
||||
"@tmagic/core": "1.1.6",
|
||||
"@tmagic/form": "1.1.6",
|
||||
"@tmagic/schema": "1.1.6",
|
||||
"@tmagic/stage": "1.1.6",
|
||||
"@tmagic/utils": "1.1.6",
|
||||
"buffer": "^6.0.3",
|
||||
"color": "^3.1.3",
|
||||
"element-plus": "^2.2.17",
|
||||
@ -62,7 +62,7 @@
|
||||
"vue": "^3.2.37"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tmagic/form": "1.1.5",
|
||||
"@tmagic/form": "1.1.6",
|
||||
"element-plus": "^2.2.17",
|
||||
"monaco-editor": "^0.34.0",
|
||||
"vue": "^3.2.37"
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.5",
|
||||
"version": "1.1.6",
|
||||
"name": "@tmagic/form",
|
||||
"sideEffects": [
|
||||
"dist/*",
|
||||
@ -35,7 +35,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@element-plus/icons-vue": "^2.0.9",
|
||||
"@tmagic/utils": "1.1.5",
|
||||
"@tmagic/utils": "1.1.6",
|
||||
"element-plus": "^2.2.17",
|
||||
"lodash-es": "^4.17.21",
|
||||
"sortablejs": "^1.14.0",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.5",
|
||||
"version": "1.1.6",
|
||||
"name": "@tmagic/schema",
|
||||
"sideEffects": false,
|
||||
"main": "dist/tmagic-schema.umd.js",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.5",
|
||||
"version": "1.1.6",
|
||||
"name": "@tmagic/stage",
|
||||
"sideEffects": [
|
||||
"dist/*"
|
||||
@ -29,9 +29,9 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@scena/guides": "^0.17.0",
|
||||
"@tmagic/core": "1.1.5",
|
||||
"@tmagic/schema": "1.1.5",
|
||||
"@tmagic/utils": "1.1.5",
|
||||
"@tmagic/core": "1.1.6",
|
||||
"@tmagic/schema": "1.1.6",
|
||||
"@tmagic/utils": "1.1.6",
|
||||
"events": "^3.3.0",
|
||||
"keycon": "^1.1.2",
|
||||
"lodash-es": "^4.17.21",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.5",
|
||||
"version": "1.1.6",
|
||||
"name": "@tmagic/table",
|
||||
"sideEffects": [
|
||||
"dist/*"
|
||||
@ -32,14 +32,14 @@
|
||||
"url": "https://github.com/Tencent/tmagic-editor.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@tmagic/form": "1.1.5",
|
||||
"@tmagic/utils": "1.1.5",
|
||||
"@tmagic/form": "1.1.6",
|
||||
"@tmagic/utils": "1.1.6",
|
||||
"element-plus": "^2.2.17",
|
||||
"lodash-es": "^4.17.21",
|
||||
"vue": "^3.2.37"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@tmagic/form": "1.1.5",
|
||||
"@tmagic/form": "1.1.6",
|
||||
"element-plus": "^2.2.17",
|
||||
"vue": "^3.2.37"
|
||||
},
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@tmagic/ui-react",
|
||||
"version": "1.1.5",
|
||||
"version": "1.1.6",
|
||||
"main": "src/index.ts",
|
||||
"engines": {
|
||||
"node": ">=14"
|
||||
@ -13,8 +13,8 @@
|
||||
"react:build": "tsc && vite build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@tmagic/core": "1.1.5",
|
||||
"@tmagic/schema": "1.1.5",
|
||||
"@tmagic/core": "1.1.6",
|
||||
"@tmagic/schema": "1.1.6",
|
||||
"qrcode": "^1.5.0",
|
||||
"react": "^17.0.0",
|
||||
"react-dom": "^17.0.0"
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.5",
|
||||
"version": "1.1.6",
|
||||
"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.5",
|
||||
"@tmagic/schema": "1.1.5",
|
||||
"@tmagic/utils": "1.1.5",
|
||||
"@tmagic/core": "1.1.6",
|
||||
"@tmagic/schema": "1.1.6",
|
||||
"@tmagic/utils": "1.1.6",
|
||||
"qrcode": "^1.5.0",
|
||||
"vue": "^2.7.4"
|
||||
},
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.5",
|
||||
"version": "1.1.6",
|
||||
"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.5",
|
||||
"@tmagic/schema": "1.1.5",
|
||||
"@tmagic/utils": "1.1.5",
|
||||
"@tmagic/core": "1.1.6",
|
||||
"@tmagic/schema": "1.1.6",
|
||||
"@tmagic/utils": "1.1.6",
|
||||
"delegate": "^3.2.0",
|
||||
"qrcode": "^1.5.0",
|
||||
"tiny-emitter": "^2.1.0",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.5",
|
||||
"version": "1.1.6",
|
||||
"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.5",
|
||||
"@tmagic/schema": "1.1.6",
|
||||
"dayjs": "^1.11.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tmagic-playground",
|
||||
"version": "1.1.5",
|
||||
"version": "1.1.6",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"clean:top": "rimraf dist",
|
||||
@ -12,11 +12,11 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@element-plus/icons-vue": "^2.0.9",
|
||||
"@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",
|
||||
"@tmagic/editor": "1.1.6",
|
||||
"@tmagic/form": "1.1.6",
|
||||
"@tmagic/schema": "1.1.6",
|
||||
"@tmagic/stage": "1.1.6",
|
||||
"@tmagic/utils": "1.1.6",
|
||||
"element-plus": "^2.2.17",
|
||||
"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.5
|
||||
'@tmagic/schema': 1.1.5
|
||||
'@tmagic/utils': 1.1.5
|
||||
'@tmagic/form': 1.1.6
|
||||
'@tmagic/schema': 1.1.6
|
||||
'@tmagic/utils': 1.1.6
|
||||
'@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.5
|
||||
'@tmagic/schema': 1.1.6
|
||||
'@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.5
|
||||
'@tmagic/form': 1.1.5
|
||||
'@tmagic/schema': 1.1.5
|
||||
'@tmagic/stage': 1.1.5
|
||||
'@tmagic/utils': 1.1.5
|
||||
'@tmagic/core': 1.1.6
|
||||
'@tmagic/form': 1.1.6
|
||||
'@tmagic/schema': 1.1.6
|
||||
'@tmagic/stage': 1.1.6
|
||||
'@tmagic/utils': 1.1.6
|
||||
'@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.5
|
||||
'@tmagic/utils': 1.1.6
|
||||
'@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.5
|
||||
'@tmagic/schema': 1.1.5
|
||||
'@tmagic/utils': 1.1.5
|
||||
'@tmagic/core': 1.1.6
|
||||
'@tmagic/schema': 1.1.6
|
||||
'@tmagic/utils': 1.1.6
|
||||
'@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.5
|
||||
'@tmagic/utils': 1.1.5
|
||||
'@tmagic/form': 1.1.6
|
||||
'@tmagic/utils': 1.1.6
|
||||
'@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.5
|
||||
'@tmagic/schema': 1.1.5
|
||||
'@tmagic/utils': 1.1.5
|
||||
'@tmagic/core': 1.1.6
|
||||
'@tmagic/schema': 1.1.6
|
||||
'@tmagic/utils': 1.1.6
|
||||
'@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.5
|
||||
'@tmagic/schema': 1.1.5
|
||||
'@tmagic/core': 1.1.6
|
||||
'@tmagic/schema': 1.1.6
|
||||
'@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.5
|
||||
'@tmagic/schema': 1.1.5
|
||||
'@tmagic/utils': 1.1.5
|
||||
'@tmagic/core': 1.1.6
|
||||
'@tmagic/schema': 1.1.6
|
||||
'@tmagic/utils': 1.1.6
|
||||
qrcode: ^1.5.0
|
||||
vite: ^3.1.3
|
||||
vue: ^2.7.4
|
||||
@ -410,7 +410,7 @@ importers:
|
||||
|
||||
packages/utils:
|
||||
specifiers:
|
||||
'@tmagic/schema': 1.1.5
|
||||
'@tmagic/schema': 1.1.6
|
||||
'@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.5
|
||||
'@tmagic/form': 1.1.5
|
||||
'@tmagic/schema': 1.1.5
|
||||
'@tmagic/stage': 1.1.5
|
||||
'@tmagic/utils': 1.1.5
|
||||
'@tmagic/editor': 1.1.6
|
||||
'@tmagic/form': 1.1.6
|
||||
'@tmagic/schema': 1.1.6
|
||||
'@tmagic/stage': 1.1.6
|
||||
'@tmagic/utils': 1.1.6
|
||||
'@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.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
|
||||
'@tmagic/cli': 1.1.6
|
||||
'@tmagic/core': 1.1.6
|
||||
'@tmagic/schema': 1.1.6
|
||||
'@tmagic/stage': 1.1.6
|
||||
'@tmagic/ui-react': 1.1.6
|
||||
'@tmagic/utils': 1.1.6
|
||||
'@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.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
|
||||
'@tmagic/cli': 1.1.6
|
||||
'@tmagic/core': 1.1.6
|
||||
'@tmagic/schema': 1.1.6
|
||||
'@tmagic/stage': 1.1.6
|
||||
'@tmagic/ui-vue2': 1.1.6
|
||||
'@tmagic/utils': 1.1.6
|
||||
'@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.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
|
||||
'@tmagic/cli': 1.1.6
|
||||
'@tmagic/core': 1.1.6
|
||||
'@tmagic/schema': 1.1.6
|
||||
'@tmagic/stage': 1.1.6
|
||||
'@tmagic/ui': 1.1.6
|
||||
'@tmagic/utils': 1.1.6
|
||||
'@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.5",
|
||||
"version": "1.1.6",
|
||||
"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.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",
|
||||
"@tmagic/cli": "1.1.6",
|
||||
"@tmagic/core": "1.1.6",
|
||||
"@tmagic/ui-react": "1.1.6",
|
||||
"@tmagic/schema": "1.1.6",
|
||||
"@tmagic/stage": "1.1.6",
|
||||
"@tmagic/utils": "1.1.6",
|
||||
"axios": "^0.25.0",
|
||||
"terser": "^5.14.2",
|
||||
"react": "^17.0.2",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "runtime-vue2",
|
||||
"version": "1.1.5",
|
||||
"version": "1.1.6",
|
||||
"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.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",
|
||||
"@tmagic/cli": "1.1.6",
|
||||
"@tmagic/core": "1.1.6",
|
||||
"@tmagic/ui-vue2": "1.1.6",
|
||||
"@tmagic/schema": "1.1.6",
|
||||
"@tmagic/stage": "1.1.6",
|
||||
"@tmagic/utils": "1.1.6",
|
||||
"axios": "^0.25.0",
|
||||
"terser": "^5.14.2",
|
||||
"vue": "^2.7.4"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "runtime-vue3",
|
||||
"version": "1.1.5",
|
||||
"version": "1.1.6",
|
||||
"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.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",
|
||||
"@tmagic/cli": "1.1.6",
|
||||
"@tmagic/core": "1.1.6",
|
||||
"@tmagic/ui": "1.1.6",
|
||||
"@tmagic/schema": "1.1.6",
|
||||
"@tmagic/stage": "1.1.6",
|
||||
"@tmagic/utils": "1.1.6",
|
||||
"@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