coverme-scanner 1.0.13 → 1.0.14

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/dist/cli/init.js CHANGED
@@ -528,7 +528,7 @@ Use the Edit tool to update \`.coverme/scan.json\` with the results.
528
528
  Generate the HTML report and open it:
529
529
  \`\`\`bash
530
530
  TIMESTAMP=$(date +%Y-%m-%d_%H-%M-%S)
531
- npx coverme-scanner report .coverme/scan.json -f html -o ".coverme/report_$TIMESTAMP.html"
531
+ npx --yes coverme-scanner@latest report .coverme/scan.json -f html -o ".coverme/report_$TIMESTAMP.html"
532
532
  cp .coverme/scan.json ".coverme/scan_$TIMESTAMP.json"
533
533
  open ".coverme/report_$TIMESTAMP.html"
534
534
  \`\`\`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coverme-scanner",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "AI-powered code scanner with multi-agent verification for Claude Code. One command scans everything.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/src/cli/init.ts CHANGED
@@ -497,7 +497,7 @@ Use the Edit tool to update \`.coverme/scan.json\` with the results.
497
497
  Generate the HTML report and open it:
498
498
  \`\`\`bash
499
499
  TIMESTAMP=$(date +%Y-%m-%d_%H-%M-%S)
500
- npx coverme-scanner report .coverme/scan.json -f html -o ".coverme/report_$TIMESTAMP.html"
500
+ npx --yes coverme-scanner@latest report .coverme/scan.json -f html -o ".coverme/report_$TIMESTAMP.html"
501
501
  cp .coverme/scan.json ".coverme/scan_$TIMESTAMP.json"
502
502
  open ".coverme/report_$TIMESTAMP.html"
503
503
  \`\`\`