aeo-ready 1.4.0 → 1.4.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.4.1
4
+
5
+ - Fix false "afdocs failed" message — `afdocs check` exits 1 when it finds failures, which is expected
6
+
3
7
  ## 1.4.0
4
8
 
5
9
  - Add Vercel Agent Readability benchmark (`@vercel/agent-readability`)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aeo-ready",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "AEO benchmark aggregator. One scan, every score. Collects agentic-seo, Cloudflare, Fern, Vercel, and AgentGrade in one report.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/scan.js CHANGED
@@ -169,7 +169,9 @@ async function promptFix(result, dir) {
169
169
  stdio: "inherit",
170
170
  });
171
171
  } catch (err) {
172
- console.log(chalk.red(`\n afdocs failed: ${err.message}\n`));
172
+ if (err.status !== 1) {
173
+ console.log(chalk.red(`\n afdocs failed: ${err.message}\n`));
174
+ }
173
175
  }
174
176
  }
175
177