Skip to content

Commit

Permalink
chore(deps-dev): bump deprecate package [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
cschanaj committed Aug 26, 2022
1 parent c6e20c3 commit 4e79f68
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 12 deletions.
53 changes: 44 additions & 9 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
Expand Up @@ -92,7 +92,7 @@
"standard": "^14.3.1",
"standard-version": "^8.0.0",
"tap": "^16.3.0",
"uuid": "^3.4.0",
"uuid": "^8.3.2",
"which": "^2.0.2"
},
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions self-coverage-helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

const path = require('path')
const fs = require('fs')
const uuid = require('uuid/v4')
const { v4: uuidv4 } = require('uuid')
const mkdirp = require('make-dir')
const onExit = require('signal-exit')
const nodePreload = require('node-preload')
Expand All @@ -21,7 +21,7 @@ global[nycSelfCoverageHelper] = {
const selfCoverageDir = path.join(__dirname, '.self_coverage')
mkdirp.sync(selfCoverageDir)
fs.writeFileSync(
path.join(selfCoverageDir, uuid() + '.json'),
path.join(selfCoverageDir, uuidv4() + '.json'),
JSON.stringify(coverage),
'utf-8'
)
Expand Down

0 comments on commit 4e79f68

Please sign in to comment.