Skip to content

Commit 843c072

Browse files
authored
fix(remix): Add glob to Remix SDK dependencies. (#8963)
1 parent 4c17f6e commit 843c072

File tree

4 files changed

+31
-1
lines changed

4 files changed

+31
-1
lines changed

packages/e2e-tests/test-applications/create-remix-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"private": true,
33
"sideEffects": false,
44
"scripts": {
5-
"build": "remix build",
5+
"build": "remix build --sourcemap && ./upload-sourcemaps.sh",
66
"dev": "remix dev",
77
"start": "remix-serve build",
88
"typecheck": "tsc",
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export SENTRY_ORG=${E2E_TEST_SENTRY_ORG_SLUG}
2+
export SENTRY_PROJECT=${E2E_TEST_SENTRY_TEST_PROJECT}
3+
export SENTRY_AUTH_TOKEN=${E2E_TEST_AUTH_TOKEN}
4+
5+
sentry-upload-sourcemaps

packages/remix/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"@sentry/react": "7.68.0",
3434
"@sentry/types": "7.68.0",
3535
"@sentry/utils": "7.68.0",
36+
"glob": "^10.3.4",
3637
"tslib": "^2.4.1 || ^1.9.3",
3738
"yargs": "^17.6.0"
3839
},

yarn.lock

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14727,6 +14727,17 @@ glob@^10.2.2:
1472714727
minipass "^5.0.0 || ^6.0.2"
1472814728
path-scurry "^1.10.0"
1472914729

14730+
glob@^10.3.4:
14731+
version "10.3.4"
14732+
resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.4.tgz#c85c9c7ab98669102b6defda76d35c5b1ef9766f"
14733+
integrity sha512-6LFElP3A+i/Q8XQKEvZjkEWEOTgAIALR9AO2rwT8bgPhDd1anmqDJDZ6lLddI4ehxxxR1S5RIqKe1uapMQfYaQ==
14734+
dependencies:
14735+
foreground-child "^3.1.0"
14736+
jackspeak "^2.0.3"
14737+
minimatch "^9.0.1"
14738+
minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
14739+
path-scurry "^1.10.1"
14740+
1473014741
glob@^5.0.10, glob@^5.0.15:
1473114742
version "5.0.15"
1473214743
resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1"
@@ -19396,6 +19407,11 @@ minipass@^5.0.0:
1939619407
resolved "https://registry.yarnpkg.com/minipass/-/minipass-6.0.2.tgz#542844b6c4ce95b202c0995b0a471f1229de4c81"
1939719408
integrity sha512-MzWSV5nYVT7mVyWCwn2o7JH13w2TBRmmSqSRCKzTw+lmft9X4z+3wjvs06Tzijo5z4W/kahUCDpRXTF+ZrmF/w==
1939819409

19410+
"minipass@^5.0.0 || ^6.0.2 || ^7.0.0":
19411+
version "7.0.3"
19412+
resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.3.tgz#05ea638da44e475037ed94d1c7efcc76a25e1974"
19413+
integrity sha512-LhbbwCfz3vsb12j/WkWQPZfKTsgqIe1Nf/ti1pKjYESGLHIVjWU96G9/ljLH4F9mWNVhlQOm0VySdAWzf05dpg==
19414+
1939919415
minizlib@^1.3.3:
1940019416
version "1.3.3"
1940119417
resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d"
@@ -21526,6 +21542,14 @@ path-scurry@^1.10.0:
2152621542
lru-cache "^9.1.1 || ^10.0.0"
2152721543
minipass "^5.0.0 || ^6.0.2"
2152821544

21545+
path-scurry@^1.10.1:
21546+
version "1.10.1"
21547+
resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.1.tgz#9ba6bf5aa8500fe9fd67df4f0d9483b2b0bfc698"
21548+
integrity sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==
21549+
dependencies:
21550+
lru-cache "^9.1.1 || ^10.0.0"
21551+
minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
21552+
2152921553
path-scurry@^1.6.1:
2153021554
version "1.6.4"
2153121555
resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.6.4.tgz#020a9449e5382a4acb684f9c7e1283bc5695de66"

0 commit comments

Comments
 (0)