Absorb element-modules/packages/element-web-module-api into monorepo

This commit is contained in:
Michael Telatynski
2026-04-13 09:30:22 +01:00
49 changed files with 3472 additions and 56 deletions
+2 -2
View File
@@ -19,10 +19,10 @@
},
"scripts": {
"prepack": "nx build:playwright",
"lint:types": "tsc --noEmit"
"lint:types": "nx lint:types"
},
"devDependencies": {
"@element-hq/element-web-module-api": "*",
"@element-hq/element-web-module-api": "workspace:*",
"@types/lodash-es": "^4.17.12",
"typescript": "^5.8.2",
"wait-on": "^9.0.4"
+7 -1
View File
@@ -8,7 +8,13 @@
"command": "tsc",
"inputs": ["src"],
"outputs": ["{projectRoot}/lib"],
"options": { "cwd": "packages/playwright-common" }
"options": { "cwd": "packages/playwright-common" },
"dependsOn": ["^build"]
},
"lint:types": {
"command": "pnpm exec tsc --noEmit",
"options": { "cwd": "packages/playwright-common" },
"dependsOn": ["^build"]
},
"docker:prebuild": {
"cache": true,