@doccov/cli 0.29.3 → 0.29.4

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.
Files changed (2) hide show
  1. package/dist/cli.js +1 -1
  2. package/package.json +2 -2
package/dist/cli.js CHANGED
@@ -3732,7 +3732,7 @@ function registerCheckCommand(program, dependencies = {}) {
3732
3732
  });
3733
3733
  const format = options.format ?? "text";
3734
3734
  const specWarnings = specResult.diagnostics.filter((d) => d.severity === "warning");
3735
- const specInfos = specResult.diagnostics.filter((d) => d.severity === "info");
3735
+ const specInfos = specResult.diagnostics.filter((d) => d.severity === "info" && !d.code?.startsWith("EXTERNAL_TYPE"));
3736
3736
  const isPreview = options.preview;
3737
3737
  const shouldFix = options.fix || isPreview;
3738
3738
  let typecheckErrors = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@doccov/cli",
3
- "version": "0.29.3",
3
+ "version": "0.29.4",
4
4
  "description": "DocCov CLI - Documentation coverage and drift detection for TypeScript",
5
5
  "keywords": [
6
6
  "typescript",
@@ -48,7 +48,7 @@
48
48
  "dependencies": {
49
49
  "@ai-sdk/anthropic": "^1.0.0",
50
50
  "@ai-sdk/openai": "^1.0.0",
51
- "@doccov/sdk": "^0.29.0",
51
+ "@doccov/sdk": "^0.29.4",
52
52
  "@doccov/spec": "^0.27.0",
53
53
  "@inquirer/prompts": "^7.8.0",
54
54
  "@openpkg-ts/spec": "^0.12.0",