You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Remove agent-markdown-audit from default build (no-op in prod)
- Replace pre-push full build with astro check (saves ~3 min per push)
- Add GitHub Actions CI: type check, format check, audit on every push/PR
- Enable starlightLinksValidator on deploy previews (skip production only)
- Raise maxParallelFileOps from 2 to 8 to reduce Rollup serialization
- Parallelize generate-llms-index.js file reads with async fs/promises
- Add /_astro/* immutable cache headers for content-hashed assets
- Fix incorrect node_bundler comment and remove redundant included_files
- Fix stale output: server comment in astro.config.mjs
- Add build audit report to project-docs/
"pre-push": "if [ -n \"$(git status --porcelain)\" ]; then echo \"❌ Error: You have uncommitted changes. Please commit or stash them before pushing.\"; git status --short; exit 1; fi && echo \"Running build before push...\" && pnpm run generate-search-index && pnpm run build && node scripts/log-preview-url.js"
3
+
"pre-push": "if [ -n \"$(git status --porcelain)\" ]; then echo \"❌ Error: You have uncommitted changes. Please commit or stash them before pushing.\"; git status --short; exit 1; fi && pnpm astro check && node scripts/log-preview-url.js"
0 commit comments