cc18ed67b7
* fix: sync package-lock.json with package.json dependencies
package-lock.json was missing @emnapi/core@1.9.2 and
@emnapi/runtime@1.9.2 (transitive deps of @emnapi/wasi-threads),
causing `npm ci` to fail on all CI jobs.
* fix: resolve remaining CI failures after TS-to-JS adapter migration
- vitest.config.ts: update adapter project include/exclude from .test.ts
to .test.{ts,js} to match converted adapter test files
- check-doc-coverage.sh: skip adapter directories containing only utility
files (prefixed with _), fixing false positive for clis/slock/
- linux-do/topic-content.test.js: fix hardcoded reference to topic.ts
(now topic.js after PR #928 migration)
82 lines
2.2 KiB
Bash
Executable File
82 lines
2.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# check-doc-coverage.sh — Verify every adapter in clis/ has a doc page.
|
|
#
|
|
# Exit codes:
|
|
# 0 — all adapters have docs
|
|
# 1 — at least one adapter is missing documentation
|
|
#
|
|
# Usage:
|
|
# bash scripts/check-doc-coverage.sh # report only
|
|
# bash scripts/check-doc-coverage.sh --strict # exit 1 on missing docs
|
|
|
|
set -euo pipefail
|
|
|
|
STRICT=false
|
|
if [[ "${1:-}" == "--strict" ]]; then
|
|
STRICT=true
|
|
fi
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
ROOT_DIR="$(cd "$SCRIPT_DIR/.." && pwd)"
|
|
|
|
SRC_DIR="$ROOT_DIR/clis"
|
|
DOCS_DIR="$ROOT_DIR/docs/adapters"
|
|
|
|
missing=()
|
|
covered=0
|
|
total=0
|
|
|
|
for adapter_dir in "$SRC_DIR"/*/; do
|
|
adapter_name="$(basename "$adapter_dir")"
|
|
# Skip internal directories (e.g., _shared)
|
|
[[ "$adapter_name" == _* ]] && continue
|
|
# Skip directories that only contain utility files (prefixed with _)
|
|
has_commands=false
|
|
for f in "$adapter_dir"*; do
|
|
fname="$(basename "$f")"
|
|
[[ "$fname" == _* ]] && continue
|
|
[[ "$fname" == *.test.* ]] && continue
|
|
has_commands=true
|
|
break
|
|
done
|
|
[[ "$has_commands" == false ]] && continue
|
|
total=$((total + 1))
|
|
|
|
# Check if doc exists in browser/ or desktop/ subdirectories
|
|
if [[ -f "$DOCS_DIR/browser/$adapter_name.md" ]] || \
|
|
[[ -f "$DOCS_DIR/desktop/$adapter_name.md" ]]; then
|
|
covered=$((covered + 1))
|
|
else
|
|
# Handle directory name mismatches (e.g., discord-app -> discord)
|
|
alt_name="${adapter_name%-app}"
|
|
if [[ "$alt_name" != "$adapter_name" ]] && \
|
|
{ [[ -f "$DOCS_DIR/browser/$alt_name.md" ]] || \
|
|
[[ -f "$DOCS_DIR/desktop/$alt_name.md" ]]; }; then
|
|
covered=$((covered + 1))
|
|
else
|
|
missing+=("$adapter_name")
|
|
fi
|
|
fi
|
|
done
|
|
|
|
echo "📊 Doc Coverage: $covered/$total adapters documented"
|
|
echo ""
|
|
|
|
if [[ ${#missing[@]} -gt 0 ]]; then
|
|
echo "⚠️ Missing docs for ${#missing[@]} adapter(s):"
|
|
for name in "${missing[@]}"; do
|
|
echo " - $name → create docs/adapters/browser/$name.md or docs/adapters/desktop/$name.md"
|
|
done
|
|
echo ""
|
|
if $STRICT; then
|
|
echo "❌ Doc check failed (--strict mode)."
|
|
exit 1
|
|
else
|
|
echo "💡 Run with --strict to fail CI on missing docs."
|
|
exit 0
|
|
fi
|
|
else
|
|
echo "✅ All adapters have documentation."
|
|
exit 0
|
|
fi
|