File tree Expand file tree Collapse file tree 3 files changed +20
-15
lines changed
dev-packages/e2e-tests/test-applications/cloudflare-astro Expand file tree Collapse file tree 3 files changed +20
-15
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,9 @@ export default defineConfig({
14
14
sentry ( {
15
15
enabled : Boolean ( dsn ) ,
16
16
dsn,
17
+ sourceMapsUploadOptions : {
18
+ enabled : false ,
19
+ } ,
17
20
clientInitPath : 'sentry.client.mjs' ,
18
21
serverInitPath : 'sentry.server.mjs' ,
19
22
} ) ,
Original file line number Diff line number Diff line change 4
4
"version" : " 0.0.1" ,
5
5
"private" : true ,
6
6
"scripts" : {
7
- "dev" : " astro dev" ,
8
- "start" : " astro dev" ,
9
- "build" : " yarn build:bundle" ,
7
+ "astro" : " astro" ,
8
+ "build" : " astro build" ,
10
9
"build:bundle" : " astro build" ,
10
+ "clean" : " npx rimraf node_modules,pnpm-lock.yaml" ,
11
+ "dev" : " astro dev" ,
11
12
"preview" : " astro preview" ,
12
- "astro" : " astro" ,
13
- "test:assert" : " pnpm version"
13
+ "start" : " astro dev" ,
14
+ "test:prod" : " pnpm -v" ,
15
+ "test:dev" : " pnpm -v" ,
16
+ "test:build" : " pnpm install && pnpm build" ,
17
+ "test:assert" : " pnpm -v"
14
18
},
15
19
"dependencies" : {
16
- "astro" : " ^4.1.1" ,
17
- "@astrojs/cloudflare" : " ^8.0.2" ,
18
- "@sentry/astro" : " 7.92.0" ,
19
- "@sentry/profiling-node" : " ^1.3.2"
20
- },
21
- "volta" : {
22
- "extends" : " ../../package.json"
20
+ "@astrojs/cloudflare" : " 8.0.1" ,
21
+ "@sentry/astro" : " latest || *" ,
22
+ "astro" : " 4.0.9"
23
23
},
24
24
"pnpm" : {
25
25
"overrides" : {
26
- "@sentry/node" : " latest || *"
26
+ "@sentry/node" : " latest || *" ,
27
+ "@sentry/tracing" : " latest || *"
27
28
}
29
+ },
30
+ "volta" : {
31
+ "extends" : " ../../package.json"
28
32
}
29
33
}
Original file line number Diff line number Diff line change @@ -2,6 +2,4 @@ import * as Sentry from '@sentry/astro';
2
2
3
3
Sentry . init ( {
4
4
dsn : process . env . E2E_TEST_DSN ,
5
- tracesSampleRate : 1 ,
6
- integrations : [ ] ,
7
5
} ) ;
You can’t perform that action at this time.
0 commit comments