feat: vue3渲染适配器

This commit is contained in:
wangxuefeng
2025-03-12 18:10:47 +08:00
parent bcdb4e8c95
commit 5f8609fc02
20 changed files with 398 additions and 150 deletions

27
apps/platform/turbo.json Normal file
View File

@@ -0,0 +1,27 @@
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"globalDependencies": ["pnpm-lock.yaml"],
"globalEnv": ["NODE_ENV"],
"tasks": {
"build": {
"dependsOn": ["@sy/vue3-renderer-adapter#build", "^build"],
"outputs": ["dist/**"]
},
"preview": {
"dependsOn": ["@sy/vue3-renderer-adapter#build", "^build"],
"outputs": ["dist/**"]
},
"build:analyze": {
"dependsOn": ["@sy/vue3-renderer-adapter#build", "^build"],
"outputs": ["dist/**"]
},
"dev": {
"dependsOn": ["@sy/vue3-renderer-adapter#build"],
"outputs": [],
"cache": false,
"persistent": true
}
},
"extends": ["//"]
}