Build typedoc before test:storybook & test:storybook:update (#32719)

* Build typedoc before test:storybook & test:storybook:update

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Fix doc

---------

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski
2026-03-10 11:22:20 +00:00
committed by GitHub
parent 2e0adc5832
commit 78b40a6fed
3 changed files with 25 additions and 6 deletions
+19
View File
@@ -32,6 +32,25 @@
"cwd": "packages/shared-components"
},
"dependsOn": ["build", "typedoc"]
},
"test:unit": {
"command": "vitest --project=unit",
"options": { "cwd": "packages/shared-components" }
},
"test:storybook": {
"command": "vitest --project=storybook",
"options": { "cwd": "packages/shared-components" },
"dependsOn": ["typedoc"]
},
"test:storybook:update": {
"command": "playwright-screenshots-experimental nx test:storybook --run --update",
"options": {
"env": {
"CI": "1"
},
"cwd": "packages/shared-components"
},
"dependsOn": ["typedoc"]
}
}
}