@majordigital/create-acorn 1.6.7 → 1.6.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@majordigital/create-acorn",
3
- "version": "1.6.7",
3
+ "version": "1.6.8",
4
4
  "description": "Interactive starter CLI for Acorn with Storyblok/Prismic/DatoCMS, TypeScript, and Tailwind.",
5
5
  "bin": {
6
6
  "create-acorn": "bin/create-acorn.mjs",
@@ -57,6 +57,13 @@ const result = await checker.check({
57
57
  concurrency,
58
58
  timeout: 30000,
59
59
  headers,
60
+ // Retry on 5xx / connection errors. The Next.js dev server compiles routes
61
+ // on-demand, so the first hit to a page can be slow or transiently 500 —
62
+ // retrying absorbs those false positives. For reliable results, run against
63
+ // a production build (npm run build && npm run start) instead of next dev.
64
+ retry: true,
65
+ retryErrors: true,
66
+ retryErrorsCount: 3,
60
67
  linksToSkip: [
61
68
  // Skip external links to avoid false positives from rate limiting
62
69
  `^(?!(${baseUrl.replace(/[.*+?^${}()|[\]\\]/g, "\\$&")}))`,