Skip to content

Commit

Permalink
chore(package): update @types/uuid to version 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
greenkeeper[bot] authored Mar 2, 2020
1 parent 5dcd2aa commit 2b30813
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/authentication/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"@types/lodash": "^4.14.149",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.4",
"@types/uuid": "^3.4.7",
"@types/uuid": "^7.0.0",
"feathers-memory": "^4.1.0",
"mocha": "^7.0.1",
"shx": "^0.3.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/authentication/src/core.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { promisify } from 'util';
import { merge } from 'lodash';
import jsonwebtoken, { SignOptions, Secret, VerifyOptions } from 'jsonwebtoken';
import uuidv4 from 'uuid/v4';
import { v4 as uuidv4 } from 'uuid';
import { NotAuthenticated } from '@feathersjs/errors';
import Debug from 'debug';
import { Application, Params } from '@feathersjs/feathers';
Expand Down

0 comments on commit 2b30813

Please sign in to comment.