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 +1 -1
- package/package.json +1 -1
- package/src/cli/init.ts +1 -1
- package/test-new.html +1582 -0
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
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
|
\`\`\`
|