Skip to content

Commit

Permalink
Merge branch 'main' into additional-config-files
Browse files Browse the repository at this point in the history
  • Loading branch information
mcknasty committed Jan 15, 2024
2 parents 5e1ef23 + 4ae2a4d commit 27d619c
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 6 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [9.1.0](https://github.com/bcoe/c8/compare/v9.0.0...v9.1.0) (2024-01-11)


### Features

* support passing reporter options from config ([#459](https://github.com/bcoe/c8/issues/459)) ([88db5db](https://github.com/bcoe/c8/commit/88db5db56ece1686b02af7ce3b5480653069b975))


### Bug Fixes

* **refactor:** remove stale check for createDynamicModule ([5e18365](https://github.com/bcoe/c8/commit/5e18365b1507682a3d7873b17ebeb6f963b251cb))

## [9.0.0](https://github.com/bcoe/c8/compare/v8.0.1...v9.0.0) (2024-01-03)


Expand Down
1 change: 1 addition & 0 deletions lib/commands/report.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ exports.outputReport = async function (argv) {
excludeAfterRemap: argv.excludeAfterRemap,
reporter: Array.isArray(argv.reporter) ? argv.reporter : [argv.reporter],
reportsDirectory: argv['reports-dir'],
reporterOptions: argv.reporterOptions || {},
tempDirectory: argv.tempDirectory,
watermarks: argv.watermarks,
resolve: argv.resolve,
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "c8",
"version": "9.0.0",
"version": "9.1.0",
"description": "output coverage reports using Node.js' built in coverage",
"main": "./index.js",
"types": "./index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions test/integration.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ All files | 3.31 | 11.32 | 5.88 | 3.31
source-map-from-file.js | 0 | 0 | 0 | 0 | 1-100
c8/lib/commands | 0 | 0 | 0 | 0 |
check-coverage.js | 0 | 0 | 0 | 0 | 1-70
report.js | 0 | 0 | 0 | 0 | 1-42
report.js | 0 | 0 | 0 | 0 | 1-43
c8/test/fixtures | 30.97 | 37.5 | 21.42 | 30.97 |
async.js | 100 | 100 | 100 | 100 |
c8-ignore-next.js | 54.54 | 0 | 0 | 54.54 | 1,3-4,9,12,17-19,21-22
Expand Down Expand Up @@ -542,7 +542,7 @@ All files | 3.31 | 11.32 | 5.88 | 3.31
source-map-from-file.js | 0 | 0 | 0 | 0 | 1-100
c8/lib/commands | 0 | 0 | 0 | 0 |
check-coverage.js | 0 | 0 | 0 | 0 | 1-70
report.js | 0 | 0 | 0 | 0 | 1-42
report.js | 0 | 0 | 0 | 0 | 1-43
c8/test/fixtures | 30.97 | 37.5 | 21.42 | 30.97 |
async.js | 100 | 100 | 100 | 100 |
c8-ignore-next.js | 54.54 | 0 | 0 | 54.54 | 1,3-4,9,12,17-19,21-22
Expand Down

0 comments on commit 27d619c

Please sign in to comment.