Files
ThreadNet-Web/modules/project.json
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
605 B
JSON
Raw Normal View History

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": {
"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
}
}
}