Skip to content

Commit

Permalink
fix(): update to the latest version of uuid
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Mar 10, 2020
1 parent ea71ac0 commit e56faf1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
2 changes: 1 addition & 1 deletion lib/utils/create-config-factory.util.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { FactoryProvider } from '@nestjs/common/interfaces';
import uuid from 'uuid/v4';
import { v4 as uuid } from 'uuid';
import { ConfigFactory } from '../interfaces';
import { getConfigToken } from './get-config-token.util';
import { ConfigFactoryKeyHost } from './register-as.util';
Expand Down
18 changes: 12 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"dotenv-expand": "5.1.0",
"lodash.get": "4.4.2",
"lodash.set": "4.3.2",
"uuid": "3.4.0"
"uuid": "^7.0.2"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
Expand All @@ -36,18 +36,18 @@
"@types/lodash.get": "4.4.6",
"@types/lodash.set": "4.3.6",
"@types/node": "7.10.8",
"@types/uuid": "^7.0.0",
"@typescript-eslint/eslint-plugin": "2.23.0",
"@typescript-eslint/parser": "2.23.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-import": "2.20.1",
"release-it": "13.0.2",
"@types/uuid": "3.4.7",
"husky": "4.2.3",
"jest": "25.1.0",
"lint-staged": "10.0.8",
"prettier": "1.19.1",
"reflect-metadata": "0.1.13",
"release-it": "13.0.2",
"rimraf": "3.0.2",
"rxjs": "6.5.4",
"ts-jest": "25.2.1",
Expand Down

0 comments on commit e56faf1

Please sign in to comment.