Skip to content

Commit dc995a9

Browse files
authored
Merge pull request #4625 from cloud-gov/dependabot/npm_and_yarn/npm_and_yarn-30f0bf3c6b
chore: close outstanding dependabot vulnerabilities
2 parents ff1f51d + fb2d20c commit dc995a9

File tree

3 files changed

+82
-82
lines changed

3 files changed

+82
-82
lines changed

frontend/shared/ExpandableArea.jsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import React from 'react';
1+
import React, { useId } from 'react';
22
import PropTypes from 'prop-types';
3-
import shortid from 'shortid';
43

54
// Based on the USWDS Accordion, but only ever has a single
65
// item that can be expanded or collapsed
@@ -11,7 +10,10 @@ function ExpandableArea({
1110
children = null,
1211
isExpanded = false,
1312
}) {
14-
const id = `expandable-area-${shortid.generate()}`;
13+
// specifically don't generate this id with another library like nanoid
14+
// https://github.com/ai/nanoid/?tab=readme-ov-file#usage
15+
const partialId = useId();
16+
const id = `expandable-area-${partialId}`;
1517
return (
1618
<div
1719
className={`usa-accordion ${bordered ? 'usa-accordion--bordered' : ''} width-full`}

package.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"keywords": [],
77
"dependencies": {
88
"@aws-sdk/client-s3": "^3.620.1",
9-
"@bull-board/api": "6.5.3",
10-
"@bull-board/express": "6.5.3",
9+
"@bull-board/api": "6.6.1",
10+
"@bull-board/express": "6.6.1",
1111
"@json2csv/plainjs": "^7.0.1",
1212
"@octokit/rest": "^18.5.2",
1313
"@socket.io/redis-adapter": "^7.0.0",
@@ -149,7 +149,7 @@
149149
"chai-as-promised": "^7.1.1",
150150
"chai-fetch-mock": "^3.0.0",
151151
"concurrently": "^9.1.0",
152-
"cookie": "^0.4.1",
152+
"cookie": "^0.7.0",
153153
"copy-webpack-plugin": "^12.0.2",
154154
"css-loader": "^6.8.1",
155155
"date-fns": "^2.30.0",
@@ -163,7 +163,7 @@
163163
"eslint-plugin-mocha": "^10.5.0",
164164
"eslint-plugin-react": "^7.37.2",
165165
"eslint-plugin-sonarjs": "^3.0.1",
166-
"eslint-plugin-svelte": "^2.46.0",
166+
"eslint-plugin-svelte": "^2.46.1",
167167
"eslint-plugin-testing-library": "^6.4.0",
168168
"fetch-mock": "^12.1.0",
169169
"jest": "^29.6.2",
@@ -178,16 +178,15 @@
178178
"nodemon": "^3.0.1",
179179
"nyc": "^15.1.0",
180180
"playwright": "^1.42.1",
181-
"postcss": "^8.4.31",
182-
"postcss-loader": "^7.3.3",
181+
"postcss": "^8.5.1",
182+
"postcss-loader": "^8.1.1",
183183
"prettier": "^3.3.3",
184184
"promise-props": "^1.0.0",
185185
"prop-types": "^15.5.10",
186186
"proxyquire": "^2.1.3",
187187
"sass": "1.69.5",
188188
"sass-loader": "^11.1.1",
189189
"serve": "^14.2.1",
190-
"shortid": "^2.2.16",
191190
"sinon": "^10.0.0",
192191
"supertest": "^7.0.0",
193192
"webpack": "^5.91.0",
@@ -205,6 +204,8 @@
205204
"*.jsx": "eslint"
206205
},
207206
"resolutions": {
208-
"**/cheerio": "1.0.0-rc.12"
207+
"**/cheerio": "1.0.0-rc.12",
208+
"cookie": "^0.7.0",
209+
"nanoid": "^3.3.8"
209210
}
210211
}

yarn.lock

Lines changed: 68 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -1679,29 +1679,29 @@
16791679
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
16801680
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
16811681

1682-
"@bull-board/api@6.5.3":
1683-
version "6.5.3"
1684-
resolved "https://registry.yarnpkg.com/@bull-board/api/-/api-6.5.3.tgz#07fccb2b25e1e36bf3f4759013b9d5c647a6c1ea"
1685-
integrity sha512-k58OlCheALXaoN+5l8U0VfLo9jQvl2nSR3/6vUmFQV8wcNBPfRtQRxUBh9/SbTDmFvtvmzvMkc+J3yWGMCDrAw==
1682+
"@bull-board/api@6.6.1":
1683+
version "6.6.1"
1684+
resolved "https://registry.yarnpkg.com/@bull-board/api/-/api-6.6.1.tgz#3fccdd686da868b3e9c4e8f8bba1e83146bd48d3"
1685+
integrity sha512-IlG60N/r/pGfZH39/IZz2rfzBXOuTpKA+5SOLX5ESqk/JPtHq2ipnaczdxSsXIcXtefmhwyhBBfQujW1bJdJlw==
16861686
dependencies:
16871687
redis-info "^3.0.8"
16881688

1689-
"@bull-board/express@6.5.3":
1690-
version "6.5.3"
1691-
resolved "https://registry.yarnpkg.com/@bull-board/express/-/express-6.5.3.tgz#b26396844549c4da8d1d7848c4f8cf309749d696"
1692-
integrity sha512-Jv8llFCJy297MBxFKahL+OsYS4z2b3xsNalYMRFcI635uGWa1rASEV+jR8lYPNBJlpzvZI3fJ0mIJegv94eIbg==
1689+
"@bull-board/express@6.6.1":
1690+
version "6.6.1"
1691+
resolved "https://registry.yarnpkg.com/@bull-board/express/-/express-6.6.1.tgz#cdfd12f8303c6ebc6bf066a50b8b8d145b8f0ba8"
1692+
integrity sha512-/3ghya2Uroq3yIEQfK4XG4oT/zGR4NMbEveqLFcOuvhvm4x3IAO3z04ugp0eDvr8pxgD3uS2Tg1cQimzUOIo4A==
16931693
dependencies:
1694-
"@bull-board/api" "6.5.3"
1695-
"@bull-board/ui" "6.5.3"
1694+
"@bull-board/api" "6.6.1"
1695+
"@bull-board/ui" "6.6.1"
16961696
ejs "^3.1.10"
1697-
express "^4.21.1"
1697+
express "^4.21.1 || ^5.0.0"
16981698

1699-
"@bull-board/ui@6.5.3":
1700-
version "6.5.3"
1701-
resolved "https://registry.yarnpkg.com/@bull-board/ui/-/ui-6.5.3.tgz#eabe62fc8ecbd72d0451d873506fb129fd4b51de"
1702-
integrity sha512-h2A7HX6Mb1+/sMTYueK5zBgOCPiPyu9ENHUapPiPdrl58xm+J9vHA/TYxzv9vgJ9DckWczXg1JP11P9SmC1oxQ==
1699+
"@bull-board/ui@6.6.1":
1700+
version "6.6.1"
1701+
resolved "https://registry.yarnpkg.com/@bull-board/ui/-/ui-6.6.1.tgz#b63234ddd30d4da10ecb032200b933a74c042b40"
1702+
integrity sha512-L4xELOzDgUz4o7mQssGM0sef1QD41AyJ3iHbXIi8V72jj2FXeDwv63BoccZTC3GZHHNo21RkslcJvBYPkUsEnA==
17031703
dependencies:
1704-
"@bull-board/api" "6.5.3"
1704+
"@bull-board/api" "6.6.1"
17051705

17061706
"@colors/colors@1.5.0":
17071707
version "1.5.0"
@@ -4632,25 +4632,10 @@ cookie-signature@^1.2.1:
46324632
resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.2.2.tgz#57c7fc3cc293acab9fec54d73e15690ebe4a1793"
46334633
integrity sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==
46344634

4635-
cookie@0.4.0:
4636-
version "0.4.0"
4637-
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba"
4638-
integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==
4639-
4640-
cookie@0.7.1:
4641-
version "0.7.1"
4642-
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.7.1.tgz#2f73c42142d5d5cf71310a74fc4ae61670e5dbc9"
4643-
integrity sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==
4644-
4645-
cookie@0.7.2, cookie@~0.7.2:
4646-
version "0.7.2"
4647-
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.7.2.tgz#556369c472a2ba910f2979891b526b3436237ed7"
4648-
integrity sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==
4649-
4650-
cookie@^0.4.1:
4651-
version "0.4.2"
4652-
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432"
4653-
integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==
4635+
cookie@0.4.0, cookie@0.7.1, cookie@0.7.2, cookie@^0.7.0, cookie@~0.7.2:
4636+
version "0.7.0"
4637+
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.7.0.tgz#2148f68a77245d5c2c0005d264bc3e08cfa0655d"
4638+
integrity sha512-qCf+V4dtlNhSRXGAZatc1TasyFO6GjohcOul807YOb5ik3+kQSnb4d7iajeCL8QHaJ4uZEjCgiCJerKXwdRVlQ==
46544639

46554640
cookiejar@^2.1.4:
46564641
version "2.1.4"
@@ -4689,7 +4674,7 @@ cors@^2.8.5, cors@~2.8.5:
46894674
object-assign "^4"
46904675
vary "^1"
46914676

4692-
cosmiconfig@^8.1.3, cosmiconfig@^8.3.5:
4677+
cosmiconfig@^8.1.3:
46934678
version "8.3.6"
46944679
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.3.6.tgz#060a2b871d66dba6c8538ea1118ba1ac16f5fae3"
46954680
integrity sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==
@@ -4699,6 +4684,16 @@ cosmiconfig@^8.1.3, cosmiconfig@^8.3.5:
46994684
parse-json "^5.2.0"
47004685
path-type "^4.0.0"
47014686

4687+
cosmiconfig@^9.0.0:
4688+
version "9.0.0"
4689+
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-9.0.0.tgz#34c3fc58287b915f3ae905ab6dc3de258b55ad9d"
4690+
integrity sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==
4691+
dependencies:
4692+
env-paths "^2.2.1"
4693+
import-fresh "^3.3.0"
4694+
js-yaml "^4.1.0"
4695+
parse-json "^5.2.0"
4696+
47024697
cpu-features@0.0.2:
47034698
version "0.0.2"
47044699
resolved "https://registry.yarnpkg.com/cpu-features/-/cpu-features-0.0.2.tgz#9f636156f1155fd04bdbaa028bb3c2fbef3cea7a"
@@ -5350,6 +5345,11 @@ entities@^4.2.0, entities@^4.4.0, entities@^4.5.0:
53505345
resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48"
53515346
integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
53525347

5348+
env-paths@^2.2.1:
5349+
version "2.2.1"
5350+
resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2"
5351+
integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==
5352+
53535353
envinfo@^7.7.3:
53545354
version "7.14.0"
53555355
resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.14.0.tgz#26dac5db54418f2a4c1159153a0b2ae980838aae"
@@ -5710,10 +5710,10 @@ eslint-plugin-sonarjs@^3.0.1:
57105710
semver "7.6.3"
57115711
typescript "^5"
57125712

5713-
eslint-plugin-svelte@^2.46.0:
5714-
version "2.46.0"
5715-
resolved "https://registry.yarnpkg.com/eslint-plugin-svelte/-/eslint-plugin-svelte-2.46.0.tgz#87bcc2820233065f79114012203b082319ff03e9"
5716-
integrity sha512-1A7iEMkzmCZ9/Iz+EAfOGYL8IoIG6zeKEq1SmpxGeM5SXmoQq+ZNnCpXFVJpsxPWYx8jIVGMerQMzX20cqUl0g==
5713+
eslint-plugin-svelte@^2.46.1:
5714+
version "2.46.1"
5715+
resolved "https://registry.yarnpkg.com/eslint-plugin-svelte/-/eslint-plugin-svelte-2.46.1.tgz#22691c8685420cd4eabf0cbaa31a0cfb8395595b"
5716+
integrity sha512-7xYr2o4NID/f9OEYMqxsEQsCsj4KaMy4q5sANaKkAb6/QeCjYFxRmDm2S3YC3A3pl1kyPZ/syOx/i7LcWYSbIw==
57175717
dependencies:
57185718
"@eslint-community/eslint-utils" "^4.4.0"
57195719
"@jridgewell/sourcemap-codec" "^1.4.15"
@@ -5947,10 +5947,10 @@ express-winston@^4.2.0:
59475947
chalk "^2.4.2"
59485948
lodash "^4.17.21"
59495949

5950-
express@^4.21.1:
5951-
version "4.21.1"
5952-
resolved "https://registry.yarnpkg.com/express/-/express-4.21.1.tgz#9dae5dda832f16b4eec941a4e44aa89ec481b281"
5953-
integrity sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==
5950+
"express@^4.21.1 || ^5.0.0":
5951+
version "4.21.2"
5952+
resolved "https://registry.yarnpkg.com/express/-/express-4.21.2.tgz#cf250e48362174ead6cea4a566abef0162c1ec32"
5953+
integrity sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==
59545954
dependencies:
59555955
accepts "~1.3.8"
59565956
array-flatten "1.1.1"
@@ -5971,7 +5971,7 @@ express@^4.21.1:
59715971
methods "~1.1.2"
59725972
on-finished "2.4.1"
59735973
parseurl "~1.3.3"
5974-
path-to-regexp "0.1.10"
5974+
path-to-regexp "0.1.12"
59755975
proxy-addr "~2.0.7"
59765976
qs "6.13.0"
59775977
range-parser "~1.2.1"
@@ -8393,15 +8393,10 @@ nan@^2.14.1, nan@^2.15.0:
83938393
resolved "https://registry.yarnpkg.com/nan/-/nan-2.22.0.tgz#31bc433fc33213c97bad36404bb68063de604de3"
83948394
integrity sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw==
83958395

8396-
nanoid@^2.1.0:
8397-
version "2.1.11"
8398-
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-2.1.11.tgz#ec24b8a758d591561531b4176a01e3ab4f0f0280"
8399-
integrity sha512-s/snB+WGm6uwi0WjsZdaVcuf3KJXlfGl2LcxgwkEwJF0D/BWzVWAZW/XY4bFaiR7s0Jk3FPvlnepg1H1b1UwlA==
8400-
8401-
nanoid@^3.3.7:
8402-
version "3.3.7"
8403-
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8"
8404-
integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==
8396+
nanoid@^3.3.7, nanoid@^3.3.8:
8397+
version "3.3.8"
8398+
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.8.tgz#b1be3030bee36aaff18bacb375e5cce521684baf"
8399+
integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==
84058400

84068401
natural-compare@^1.4.0:
84078402
version "1.4.0"
@@ -8922,10 +8917,10 @@ path-parse@^1.0.7:
89228917
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
89238918
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
89248919

8925-
path-to-regexp@0.1.10:
8926-
version "0.1.10"
8927-
resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.10.tgz#67e9108c5c0551b9e5326064387de4763c4d5f8b"
8928-
integrity sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==
8920+
path-to-regexp@0.1.12:
8921+
version "0.1.12"
8922+
resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.12.tgz#d5e1a12e478a976d432ef3c58d534b9923164bb7"
8923+
integrity sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==
89298924

89308925
path-to-regexp@3.3.0:
89318926
version "3.3.0"
@@ -9096,12 +9091,12 @@ postcss-load-config@^3.1.4:
90969091
lilconfig "^2.0.5"
90979092
yaml "^1.10.2"
90989093

9099-
postcss-loader@^7.3.3:
9100-
version "7.3.4"
9101-
resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-7.3.4.tgz#aed9b79ce4ed7e9e89e56199d25ad1ec8f606209"
9102-
integrity sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A==
9094+
postcss-loader@^8.1.1:
9095+
version "8.1.1"
9096+
resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-8.1.1.tgz#2822589e7522927344954acb55bbf26e8b195dfe"
9097+
integrity sha512-0IeqyAsG6tYiDRCYKQJLAmgQr47DX6N7sFSWvQxt6AcupX8DIdmykuk/o/tx0Lze3ErGHJEp5OSRxrelC6+NdQ==
91039098
dependencies:
9104-
cosmiconfig "^8.3.5"
9099+
cosmiconfig "^9.0.0"
91059100
jiti "^1.20.0"
91069101
semver "^7.5.4"
91079102

@@ -9164,7 +9159,7 @@ postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0:
91649159
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
91659160
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
91669161

9167-
postcss@^8.4.31, postcss@^8.4.33, postcss@^8.4.38, postcss@^8.4.39:
9162+
postcss@^8.4.33, postcss@^8.4.38, postcss@^8.4.39:
91689163
version "8.4.49"
91699164
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.49.tgz#4ea479048ab059ab3ae61d082190fabfd994fe19"
91709165
integrity sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==
@@ -9173,6 +9168,15 @@ postcss@^8.4.31, postcss@^8.4.33, postcss@^8.4.38, postcss@^8.4.39:
91739168
picocolors "^1.1.1"
91749169
source-map-js "^1.2.1"
91759170

9171+
postcss@^8.5.1:
9172+
version "8.5.1"
9173+
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.1.tgz#e2272a1f8a807fafa413218245630b5db10a3214"
9174+
integrity sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==
9175+
dependencies:
9176+
nanoid "^3.3.8"
9177+
picocolors "^1.1.1"
9178+
source-map-js "^1.2.1"
9179+
91769180
postgres-array@~2.0.0:
91779181
version "2.0.0"
91789182
resolved "https://registry.yarnpkg.com/postgres-array/-/postgres-array-2.0.0.tgz#48f8fce054fbc69671999329b8834b772652d82e"
@@ -10166,13 +10170,6 @@ shell-quote@^1.8.1:
1016610170
resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680"
1016710171
integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==
1016810172

10169-
shortid@^2.2.16:
10170-
version "2.2.16"
10171-
resolved "https://registry.yarnpkg.com/shortid/-/shortid-2.2.16.tgz#b742b8f0cb96406fd391c76bfc18a67a57fe5608"
10172-
integrity sha512-Ugt+GIZqvGXCIItnsL+lvFJOiN7RYqlGy7QE41O3YC1xbNSeDGIRO7xg2JJXIAj1cAGnOeC1r7/T9pgrtQbv4g==
10173-
dependencies:
10174-
nanoid "^2.1.0"
10175-
1017610173
side-channel@^1.0.4, side-channel@^1.0.6:
1017710174
version "1.0.6"
1017810175
resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2"

0 commit comments

Comments
 (0)