Skip to content

Commit

Permalink
fix(package): update uuid to version 8.1.0
Browse files Browse the repository at this point in the history
Closes #87
  • Loading branch information
greenkeeper[bot] authored and sharvit committed Aug 8, 2020
1 parent ff8fdb4 commit 5eadbad
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"lodash.kebabcase": "^4.1.1",
"make-dir": "^3.0.0",
"npm-profile": "^5.0.1",
"uuid": "^3.3.2",
"uuid": "^8.1.0",
"yeoman-generator": "^4.0.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/app/prompter.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import camelCase from 'lodash.camelcase';
import kebabCase from 'lodash.kebabcase';
import chalk from 'chalk';
import uuid from 'uuid/v4';
import { v4 as uuid } from 'uuid';

import Github from './lib/github';
import { login as npmLogin } from './lib/npm';
Expand Down
5 changes: 5 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9970,6 +9970,11 @@ uuid@^3.3.2, uuid@^3.3.3:
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==

uuid@^8.1.0:
version "8.1.0"
resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.1.0.tgz#6f1536eb43249f473abc6bd58ff983da1ca30d8d"
integrity sha512-CI18flHDznR0lq54xBycOVmphdCYnQLKn8abKn7PXUiKUGdEd+/l9LWNJmugXel4hXq7S+RMNl34ecyC9TntWg==

v8-compile-cache@^2.0.3:
version "2.1.0"
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz#e14de37b31a6d194f5690d67efc4e7f6fc6ab30e"
Expand Down

0 comments on commit 5eadbad

Please sign in to comment.