-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from hildjj/update-coverage
Add coverage, clean up som old cruft.
- Loading branch information
Showing
16 changed files
with
1,224 additions
and
579 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
"exclude": [ | ||
"**/test/**", | ||
"**/node_modules/**", | ||
"ava.config.cjs" | ||
"ava.config.cjs", | ||
"package.js" | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
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,4 @@ | ||
{ | ||
"dep": ["prod", "dev", "packageManager"], | ||
"reject": ["eslint", "eslint-plugin-ava"] | ||
} |
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 |
---|---|---|
|
@@ -28,3 +28,4 @@ CHANGELOG.md | |
vscode/ | ||
eslint.config.js | ||
.c8rc | ||
.ncurc |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -12,9 +12,8 @@ | |
"bugs": "https://github.com/hildjj/quence/issues", | ||
"scripts": { | ||
"lint": "eslint .", | ||
"test": "ava", | ||
"test": "c8 ava", | ||
"snaps": "ava --update-snapshots", | ||
"coverage": "c8 npm test", | ||
"build": "peggy --format es lib/grammar.pegjs", | ||
"release": "npm version patch && git push --follow-tags && npm publish", | ||
"types": "tsc", | ||
|
@@ -50,26 +49,27 @@ | |
} | ||
], | ||
"dependencies": { | ||
"commander": "12.0.0", | ||
"commander": "12.1.0", | ||
"pdfkit": "^0.15.0", | ||
"xmlbuilder2": "3.1.1" | ||
}, | ||
"devDependencies": { | ||
"@cto.af/eslint-config": "^4.0.2", | ||
"@types/node": "20.12.10", | ||
"@peggyjs/coverage": "1.2.0", | ||
"@types/node": "20.12.12", | ||
"@types/pdfkit": "0.13.4", | ||
"ava": "^6.1.3", | ||
"c8": "^9.1.0", | ||
"eslint": "^8.57.0", | ||
"eslint-plugin-ava": "^14.0.0", | ||
"eslint-plugin-node": "^11.1.0", | ||
"execa": "^8.0.1", | ||
"execa": "^9.1.0", | ||
"package-extract": "^1.0.3", | ||
"peggy": "^4.0.2", | ||
"typescript": "^5.4.5", | ||
"typescript-eslint": "7.8.0" | ||
"typescript-eslint": "7.10.0" | ||
}, | ||
"packageManager": "[email protected].0", | ||
"packageManager": "[email protected].2", | ||
"engines": { | ||
"node": ">=18" | ||
} | ||
|
Oops, something went wrong.