Fix element-web start not building module-api (#33161)

This commit is contained in:
Michael Telatynski 2026-04-16 08:58:43 +01:00 committed by GitHub
parent ef5fad8d6a
commit b495628e6f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 0 deletions

View File

@ -14,6 +14,12 @@
"cwd": "packages/module-api"
}
},
"start": {
"command": "vite build --watch",
"options": { "cwd": "packages/module-api" },
"dependsOn": ["^start"],
"continuous": true
},
"lint:types": {
"command": "pnpm exec tsc --noEmit",
"options": { "cwd": "packages/module-api" }

View File

@ -13,6 +13,7 @@
"start": {
"command": "vite build --watch",
"options": { "cwd": "packages/shared-components" },
"dependsOn": ["^start"],
"continuous": true
},
"typedoc": {