2026-06-09 15:46:41 +01:00
|
|
|
{
|
|
|
|
|
"$schema": "../node_modules/nx/schemas/project-schema.json",
|
|
|
|
|
"projectType": "library",
|
2026-06-09 18:17:37 +01:00
|
|
|
"implicitDependencies": ["modules/*"],
|
2026-06-09 15:46:41 +01:00
|
|
|
"targets": {
|
2026-06-11 11:37:47 +01:00
|
|
|
"lint:types": {
|
|
|
|
|
"command": "tsc --noEmit",
|
|
|
|
|
"options": { "cwd": "modules" },
|
|
|
|
|
"dependsOn": ["^build:playwright"]
|
|
|
|
|
},
|
2026-06-09 15:46:41 +01:00
|
|
|
"test:playwright": {
|
|
|
|
|
"command": "playwright test",
|
|
|
|
|
"options": { "cwd": "modules" },
|
2026-06-09 18:17:37 +01:00
|
|
|
"dependsOn": ["^build:playwright", "^build"]
|
2026-06-09 15:46:41 +01:00
|
|
|
},
|
|
|
|
|
"test:playwright:screenshots": {
|
|
|
|
|
"command": "playwright-screenshots playwright test --update-snapshots --grep @screenshot",
|
|
|
|
|
"options": { "cwd": "modules" },
|
2026-06-09 18:17:37 +01:00
|
|
|
"dependsOn": ["^build:playwright", "^build"]
|
2026-06-09 15:46:41 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|