Skip to content

Commit

Permalink
chore(deps): bump uuid from 7.0.3 to 8.0.0 (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
SukkaW committed May 3, 2020
1 parent e8fa6c4 commit b1aa459
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"nyc": "^15.0.0",
"sinon": "^9.0.2",
"supertest": "^4.0.2",
"uuid": "^7.0.2"
"uuid": "^8.0.0"
},
"engines": {
"node": ">=8.6.0"
Expand Down
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const request = require('supertest');
const { join } = require('path');
const fs = require('hexo-fs');
const Promise = require('bluebird');
const uuidv4 = require('uuid/v4');
const { v4: uuidv4 } = require('uuid');
const sinon = require('sinon');

describe('server', () => {
Expand Down

0 comments on commit b1aa459

Please sign in to comment.