-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(options): migrate API to use glob patterns
BREAKING CHANGE: old API (reportDir and rootDir) has been dropped in favor of the new Glob patterns allowing further configurability for report file names BREAKING CHANGE: drops support for 10.0.0 > Node >= 8.6.0
- Loading branch information
1 parent
7cbde9d
commit 5488967
Showing
8 changed files
with
61 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
"author": "Anton Telesh <[email protected]>", | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=8.6.0" | ||
"node": ">=10.0.0" | ||
}, | ||
"scripts": { | ||
"test": "is-ci && jest --coverage && codecov || jest --coverage", | ||
|
@@ -36,7 +36,7 @@ | |
}, | ||
"dependencies": { | ||
"fs-extra": "^7.0.1", | ||
"minimatch": "^3.0.4", | ||
"glob": "^7.1.6", | ||
"uuid": "^3.3.2", | ||
"yargs": "^12.0.5" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters