blueprints/package.json
Adam Zieliński 17bf21e1ab
Fix screenshot CI to only process missing shots (#161)
- Screenshot automation now skips Blueprints that already have a
screenshot (e.g. `blueprints/<slug>/screenshot.jpg`, or a
`meta.screenshot` URL).
- Removes the obsolete `inject` script from `package.json` and drops the
`npm run inject` step from the screenshots workflow.

This prevents the screenshots job from reprocessing every Blueprint on
each run and fixes the broken CI reference to a deleted script.
2025-12-19 00:45:30 +01:00

12 lines
228 B
JSON

{
"name": "blueprints-screenshots",
"private": true,
"type": "module",
"scripts": {
"shots": "tsx scripts/screenshot-blueprints.ts"
},
"devDependencies": {
"playwright": "^1.48.0",
"tsx": "^4.19.0"
}
}