Skip to content

Commit b495928

Browse files
committed
fix dependencies...
1 parent cf96436 commit b495928

File tree

49 files changed

+2482
-533
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+2482
-533
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ node_modules/
33
packages/*/package-lock.json
44
dev-packages/*/package-lock.json
55
package-lock.json
6+
.yarn
67

78
# build and test
89
# SDK builds

.yarn/install-state.gz

-4.06 MB
Binary file not shown.

dev-packages/browser-integration-tests/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
"test:detect-flaky": "ts-node scripts/detectFlakyTests.ts"
4040
},
4141
"dependencies": {
42+
"@babel/core": "^7.27.4",
4243
"@babel/preset-typescript": "^7.16.7",
4344
"@playwright/test": "~1.50.0",
4445
"@sentry-internal/rrweb": "2.34.0",
@@ -53,7 +54,9 @@
5354
"devDependencies": {
5455
"@types/glob": "8.0.0",
5556
"@types/node": "^18.19.1",
56-
"glob": "8.0.3"
57+
"glob": "8.0.3",
58+
"ts-node": "10.9.1",
59+
"typescript": "~5.0.0"
5760
},
5861
"volta": {
5962
"extends": "../../package.json"

dev-packages/e2e-tests/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"glob": "8.0.3",
2828
"rimraf": "^5.0.10",
2929
"ts-node": "10.9.1",
30+
"typescript": "~5.0.0",
3031
"yaml": "2.2.2"
3132
},
3233
"volta": {

dev-packages/node-integration-tests/package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
"scripts": {
1313
"build": "run-s build:transpile build:types",
1414
"build:dev": "yarn build",
15-
"build:transpile": "rollup -c rollup.npm.config.mjs",
15+
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs",
1616
"build:types": "tsc -p tsconfig.types.json",
17-
"clean": "rimraf -g **/node_modules && run-p clean:script",
17+
"clean": "rimraf -g **/node_modules && yarn clean:script",
1818
"clean:script": "node scripts/clean.js",
1919
"express-v5-install": "cd suites/express-v5 && yarn --no-lockfile",
2020
"lint": "eslint . --format stylish",
@@ -73,7 +73,10 @@
7373
"@types/amqplib": "^0.10.5",
7474
"@types/node-cron": "^3.0.11",
7575
"@types/node-schedule": "^2.1.7",
76-
"globby": "11"
76+
"file-type": "^20.4.1",
77+
"globby": "11",
78+
"react": "^18.0.0",
79+
"zod": "^3.24.1"
7780
},
7881
"config": {
7982
"mongodbMemoryServer": {

dev-packages/test-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"build": "run-s build:transpile build:types",
3737
"build:tarball": "run-s build:transpile build:types",
3838
"build:dev": "yarn build",
39-
"build:transpile": "rollup -c rollup.npm.config.mjs",
39+
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs",
4040
"build:types": "tsc -p tsconfig.types.json",
4141
"clean": "rimraf -g ./node_modules ./build"
4242
},

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@
4141
"test:ci:browser": "UNIT_TEST_ENV=browser ts-node ./scripts/ci-unit-tests.ts",
4242
"test:ci:node": "UNIT_TEST_ENV=node ts-node ./scripts/ci-unit-tests.ts",
4343
"test:ci:bun": "lerna run test --scope @sentry/bun",
44-
"yalc:publish": "lerna run yalc:publish"
44+
"yalc:publish": "lerna run yalc:publish",
45+
"g:downlevel-dts": "cd $INIT_CWD && downlevel-dts",
46+
"g:rollup": "cd $INIT_CWD && rollup"
4547
},
4648
"packageManager": "[email protected]+sha512.5383cc12567a95f1d668fbe762dfe0075c595b4bfff433be478dbbe24e05251a8e8c3eb992a986667c1d53b6c3a9c85b8398c35a960587fbd9fa3a0915406728",
4749
"volta": {
@@ -147,7 +149,8 @@
147149
"resolutions": {
148150
"gauge/strip-ansi": "6.0.1",
149151
"wide-align/string-width": "4.2.3",
150-
"cliui/wrap-ansi": "7.0.0"
152+
"cliui/wrap-ansi": "7.0.0",
153+
"sucrase": "getsentry/sucrase#es2020-polyfills"
151154
},
152155
"version": "0.0.0",
153156
"name": "sentry-javascript",

packages/astro/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@
6868
"scripts": {
6969
"build": "run-p build:transpile build:types",
7070
"build:dev": "yarn build",
71-
"build:transpile": "rollup -c rollup.npm.config.mjs",
71+
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs",
7272
"build:types": "tsc -p tsconfig.types.json",
7373
"build:watch": "run-p build:transpile:watch build:types:watch",
7474
"build:dev:watch": "yarn build:watch",
75-
"build:transpile:watch": "rollup -c rollup.npm.config.mjs --watch",
75+
"build:transpile:watch": "yarn g:rollup -c rollup.npm.config.mjs --watch",
7676
"build:types:watch": "tsc -p tsconfig.types.json --watch",
7777
"build:tarball": "npm pack",
7878
"circularDepCheck": "madge --circular src/index.client.ts && madge --circular src/index.server.ts && madge --circular src/index.types.ts",

packages/aws-serverless/package.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,20 +73,22 @@
7373
"@types/aws-lambda": "^8.10.62"
7474
},
7575
"devDependencies": {
76-
"@types/node": "^18.19.1"
76+
"@types/node": "^18.19.1",
77+
"ts-node": "10.9.1",
78+
"typescript": "~5.0.0"
7779
},
7880
"scripts": {
7981
"build": "run-p build:transpile build:types build:bundle",
8082
"build:bundle": "yarn build:layer",
8183
"build:layer": "yarn ts-node scripts/buildLambdaLayer.ts",
8284
"build:dev": "run-p build:transpile build:types",
83-
"build:transpile": "rollup -c rollup.npm.config.mjs && yarn build:layer",
85+
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs && yarn build:layer",
8486
"build:types": "run-s build:types:core build:types:downlevel",
8587
"build:types:core": "tsc -p tsconfig.types.json",
86-
"build:types:downlevel": "yarn downlevel-dts build/npm/types build/npm/types-ts3.8 --to ts3.8",
88+
"build:types:downlevel": "yarn g:downlevel-dts build/npm/types build/npm/types-ts3.8 --to ts3.8",
8789
"build:watch": "run-p build:transpile:watch build:types:watch",
8890
"build:dev:watch": "yarn build:watch",
89-
"build:transpile:watch": "rollup -c rollup.npm.config.mjs --watch",
91+
"build:transpile:watch": "yarn g:rollup -c rollup.npm.config.mjs --watch",
9092
"build:types:watch": "tsc -p tsconfig.types.json --watch",
9193
"build:tarball": "npm pack",
9294
"circularDepCheck": "madge --circular src/index.ts",

packages/aws-serverless/scripts/buildLambdaLayer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function run(cmd: string, options?: childProcess.ExecSyncOptions): string {
1313

1414
async function buildLambdaLayer(): Promise<void> {
1515
// Create the main SDK bundle
16-
run('yarn rollup --config rollup.aws.config.mjs');
16+
run('yarn g:rollup -c rollup.aws.config.mjs');
1717

1818
// We build a minified bundle, but it's standing in for the regular `index.js` file listed in `package.json`'s `main`
1919
// property, so we have to rename it so it's findable.

0 commit comments

Comments
 (0)