Skip to content

Commit

Permalink
fix npm audit
Browse files Browse the repository at this point in the history
`npm audit` was reporting vulnerabilities.

I ran `npm audit fix --force`. None of the breaking changes in `nyc`
seem to affect us, and coverage still works.
  • Loading branch information
kvakil authored and joyeecheung committed Oct 3, 2022
1 parent eb969e1 commit bc857f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ out/
npm-debug.log
node_modules/
package-lock.json
.nyc_output/

# Generated by scripts/configure.js
config.gypi
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
},
"homepage": "https://github.com/nodejs/llnode#readme",
"devDependencies": {
"codecov": "^3.1.0",
"nyc": "^13.1.0",
"clang-format": "1.2.4",
"codecov": "^3.1.0",
"nyc": "^15.1.0",
"tape": "^4.4.0"
},
"nyc": {
Expand Down

0 comments on commit bc857f0

Please sign in to comment.