From 1d8149b5eb4ab85acffd8a1149a39b1a4baae5d9 Mon Sep 17 00:00:00 2001 From: roymondchen Date: Mon, 8 Aug 2022 16:12:35 +0800 Subject: [PATCH] =?UTF-8?q?build:=20=E4=BF=AE=E6=94=B9runtime=20=20publicD?= =?UTF-8?q?ir?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintignore | 1 - docs/src/admin/introduction.md | 2 +- package.json | 5 +- playground/.env.react | 3 +- playground/.env.vue2 | 3 +- playground/.env.vue3 | 3 +- playground/.gitignore | 4 +- playground/src/pages/Editor.vue | 256 +++++++++++++--------------- runtime/react/.gitignore | 1 - runtime/react/build.vite.config.ts | 16 +- runtime/react/dev.vite.config.ts | 2 +- runtime/react/package.json | 8 +- runtime/react/page/index.html | 1 + runtime/react/playground/index.html | 1 + runtime/react/public/favicon.png | Bin 0 -> 8785 bytes runtime/vue2/.gitignore | 1 - runtime/vue2/build.vite.config.ts | 16 +- runtime/vue2/dev.vite.config.ts | 2 +- runtime/vue2/package.json | 8 +- runtime/vue2/page/index.html | 1 + runtime/vue2/playground/index.html | 1 + runtime/vue2/public/favicon.png | Bin 0 -> 8785 bytes runtime/vue3/.gitignore | 2 - runtime/vue3/build.vite.config.ts | 16 +- runtime/vue3/dev.vite.config.ts | 2 +- runtime/vue3/package.json | 10 +- runtime/vue3/page/index.html | 1 + runtime/vue3/playground/index.html | 1 + runtime/vue3/public/favicon.png | Bin 0 -> 8785 bytes 29 files changed, 185 insertions(+), 182 deletions(-) create mode 100644 runtime/react/public/favicon.png create mode 100644 runtime/vue2/public/favicon.png create mode 100644 runtime/vue3/public/favicon.png diff --git a/.eslintignore b/.eslintignore index 31f5c478..423fc1bc 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,5 +1,4 @@ dist -admin-dist entry-dist coverage node_modules diff --git a/docs/src/admin/introduction.md b/docs/src/admin/introduction.md index 7c29059d..be900115 100644 --- a/docs/src/admin/introduction.md +++ b/docs/src/admin/introduction.md @@ -147,7 +147,7 @@ cd tmatic-editor npm run build:runtime:admin ``` -将/runtime/{vue3 | vue2 | react}/admin-dist 中所有文件以及文件夹复制到 /magic/runtime 目录下 +将/runtime/{vue3 | vue2 | react}/dist 中所有文件以及文件夹复制到 /magic/runtime 目录下 上面的操作我们提供了/magic-admin/setup.sh 脚本文件来实现,开发者可以参考该脚本文件来搭建流水线。 diff --git a/package.json b/package.json index 8699d9e0..bddc86ad 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "packageManager": "pnpm@7.1.9", "scripts": { "bootstrap": "pnpm i && pnpm build", - "clean:top": "rimraf */**/dist */**/types */**/admin-dist */**/entry-dist */dist coverage dwt*", + "clean:top": "rimraf */**/dist */**/types */dist coverage dwt*", "clean:modules": "rimraf node_modules **/node_modules **/**/node_modules", "clean:all": "pnpm clean:top && pnpm clean:modules", "lint": "eslint . --ext .js,.vue,.ts,.tsx", @@ -18,8 +18,7 @@ "pg:react": "pnpm playground:react", "build": "pnpm --filter \"@tmagic/*\" build", "build:runtime:admin": "pnpm --filter \"runtime-*\" build:admin", - "build:playground": "pnpm --filter \"runtime-vue3\" --filter \"tmagic-playground\" build", - "postbuild:playground": "shx mkdir playground/dist/runtime && shx cp -r runtime/vue3/dist ./playground/dist/runtime/vue3 && cp -r runtime/vue3/entry-dist/* ./playground/dist/runtime/vue3", + "build:playground": "pnpm --filter \"runtime-vue3\" build && pnpm --filter \"tmagic-playground\" build", "docs": "pnpm --filter \"docs\" dev", "build:docs": "pnpm --filter \"docs\" build", "reinstall": "pnpm clean:all && pnpm bootstrap", diff --git a/playground/.env.react b/playground/.env.react index f6885129..014401fd 100644 --- a/playground/.env.react +++ b/playground/.env.react @@ -1 +1,2 @@ -VITE_RUNTIME_PATH=/tmagic-editor/playground/runtime/react \ No newline at end of file +VITE_RUNTIME_PATH=/tmagic-editor/playground/runtime/react +VITE_ENTRY_PATH=./entry/react \ No newline at end of file diff --git a/playground/.env.vue2 b/playground/.env.vue2 index 73679984..7afcec37 100644 --- a/playground/.env.vue2 +++ b/playground/.env.vue2 @@ -1 +1,2 @@ -VITE_RUNTIME_PATH=/tmagic-editor/playground/runtime/vue2 \ No newline at end of file +VITE_RUNTIME_PATH=/tmagic-editor/playground/runtime/vue2 +VITE_ENTRY_PATH=./entry/vue2 \ No newline at end of file diff --git a/playground/.env.vue3 b/playground/.env.vue3 index 780acb19..cb9893e3 100644 --- a/playground/.env.vue3 +++ b/playground/.env.vue3 @@ -1 +1,2 @@ -VITE_RUNTIME_PATH=/tmagic-editor/playground/runtime/vue3 \ No newline at end of file +VITE_RUNTIME_PATH=/tmagic-editor/playground/runtime/vue3 +VITE_ENTRY_PATH=./entry/vue3 \ No newline at end of file diff --git a/playground/.gitignore b/playground/.gitignore index 53c37a16..b3f4db28 100644 --- a/playground/.gitignore +++ b/playground/.gitignore @@ -1 +1,3 @@ -dist \ No newline at end of file +dist +public/entry +public/runtime \ No newline at end of file diff --git a/playground/src/pages/Editor.vue b/playground/src/pages/Editor.vue index 5f1a8d09..583990d8 100644 --- a/playground/src/pages/Editor.vue +++ b/playground/src/pages/Editor.vue @@ -15,23 +15,18 @@ :stage-rect="stageRect" > - + -