Skip to content

Commit 181e14e

Browse files
authored
Merge pull request #171 from scttcper/uuid-upgrade
fix: Upgrade uuid package
2 parents e02ac65 + c6bc051 commit 181e14e

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"dependencies": {
2323
"mkdirp": "^1.0.4",
2424
"strip-ansi": "^5.2.0",
25-
"uuid": "^3.3.3",
25+
"uuid": "^8.3.2",
2626
"xml": "^1.0.1"
2727
},
2828
"devDependencies": {

utils/getOptions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
const path = require('path');
44
const fs = require('fs');
5-
const uuid = require('uuid/v1');
5+
const { v1: uuid } = require('uuid');
66

77
const constants = require('../constants/index');
88

yarn.lock

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3874,7 +3874,7 @@ util-deprecate@~1.0.1:
38743874
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
38753875
integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
38763876

3877-
uuid@^3.3.2, uuid@^3.3.3:
3877+
uuid@^3.3.2:
38783878
version "3.3.3"
38793879
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.3.tgz#4568f0216e78760ee1dbf3a4d2cf53e224112866"
38803880
integrity sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==
@@ -3884,6 +3884,11 @@ uuid@^7.0.3:
38843884
resolved "https://registry.yarnpkg.com/uuid/-/uuid-7.0.3.tgz#c5c9f2c8cf25dc0a372c4df1441c41f5bd0c680b"
38853885
integrity sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==
38863886

3887+
uuid@^8.3.2:
3888+
version "8.3.2"
3889+
resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
3890+
integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
3891+
38873892
v8-to-istanbul@^4.1.3:
38883893
version "4.1.4"
38893894
resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-4.1.4.tgz#b97936f21c0e2d9996d4985e5c5156e9d4e49cd6"

0 commit comments

Comments
 (0)