review round 2: deterministic checks (npm run check: build + zero-dep link checker; tsconfig with docs-recommended include/exclude, astro check dropped — OOMs at 12GB on a 200-entry collection), sitemap static pages derived from route files, non-recursive content glob (id/slug trap), --header-h token, honest CDN comments (sveltia UI fonts), preview.css drift (prose a wrap, img block, h1 size)

This commit is contained in:
2026-09-03 15:11:43 +02:00
parent cec8018c18
commit c4d21b59be
8 changed files with 1068 additions and 13 deletions
+6 -1
View File
@@ -6,9 +6,14 @@
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview"
"preview": "astro preview",
"check": "astro build && node scripts/check-links.mjs"
},
"dependencies": {
"astro": "^7.2.10"
},
"devDependencies": {
"@astrojs/check": "^0.9.10",
"typescript": "^6.0.3"
}
}