- 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.
12 lines
228 B
JSON
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"
|
|
}
|
|
}
|