Skip to content

Commit 9056516

Browse files
authored
fix(remix): Add yargs dependency for uploading sourcemaps (#5926)
Add `yargs` dep to remix SDK that is used by our upload sourcemaps script:
1 parent 56868e8 commit 9056516

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

packages/remix/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
"@sentry/types": "7.15.0",
3030
"@sentry/utils": "7.15.0",
3131
"@sentry/webpack-plugin": "1.19.0",
32-
"tslib": "^1.9.3"
32+
"tslib": "^1.9.3",
33+
"yargs": "^17.6.0"
3334
},
3435
"devDependencies": {
3536
"@remix-run/node": "^1.4.3",

yarn.lock

+27
Original file line numberDiff line numberDiff line change
@@ -9488,6 +9488,15 @@ cliui@^7.0.2:
94889488
strip-ansi "^6.0.0"
94899489
wrap-ansi "^7.0.0"
94909490

9491+
cliui@^8.0.1:
9492+
version "8.0.1"
9493+
resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa"
9494+
integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==
9495+
dependencies:
9496+
string-width "^4.2.0"
9497+
strip-ansi "^6.0.1"
9498+
wrap-ansi "^7.0.0"
9499+
94919500
clone-deep@^0.2.4:
94929501
version "0.2.4"
94939502
resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-0.2.4.tgz#4e73dd09e9fb971cc38670c5dced9c1896481cc6"
@@ -26975,6 +26984,11 @@ yargs-parser@^20.2.3:
2697526984
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.7.tgz#61df85c113edfb5a7a4e36eb8aa60ef423cbc90a"
2697626985
integrity sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw==
2697726986

26987+
yargs-parser@^21.0.0:
26988+
version "21.1.1"
26989+
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35"
26990+
integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==
26991+
2697826992
yargs-unparser@1.6.0:
2697926993
version "1.6.0"
2698026994
resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-1.6.0.tgz#ef25c2c769ff6bd09e4b0f9d7c605fb27846ea9f"
@@ -27048,6 +27062,19 @@ yargs@^16.1.1, yargs@^16.2.0:
2704827062
y18n "^5.0.5"
2704927063
yargs-parser "^20.2.2"
2705027064

27065+
yargs@^17.6.0:
27066+
version "17.6.0"
27067+
resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.6.0.tgz#e134900fc1f218bc230192bdec06a0a5f973e46c"
27068+
integrity sha512-8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g==
27069+
dependencies:
27070+
cliui "^8.0.1"
27071+
escalade "^3.1.1"
27072+
get-caller-file "^2.0.5"
27073+
require-directory "^2.1.1"
27074+
string-width "^4.2.3"
27075+
y18n "^5.0.5"
27076+
yargs-parser "^21.0.0"
27077+
2705127078
yauzl@^2.10.0:
2705227079
version "2.10.0"
2705327080
resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9"

0 commit comments

Comments
 (0)