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" > - + -