7
7
type RunnerOpts ,
8
8
} from '@cardstack/runtime-common/search-index' ;
9
9
import { JSDOM } from 'jsdom' ;
10
- import * as Sentry from '@sentry/node ' ;
10
+ import { type ErrorReporter } from '@cardstack/runtime-common/realm ' ;
11
11
12
12
const appName = '@cardstack/host' ;
13
13
export async function makeFastBootIndexRunner (
@@ -16,22 +16,19 @@ export async function makeFastBootIndexRunner(
16
16
) : Promise < { getRunner : IndexRunner ; distPath : string } > {
17
17
let fastboot : FastBootInstance ;
18
18
let distPath : string ;
19
+
20
+ let globalWithErrorReporter = global as typeof globalThis & {
21
+ __boxelErrorReporter : ErrorReporter ;
22
+ } ;
23
+
19
24
if ( typeof dist === 'string' ) {
20
25
distPath = dist ;
21
26
fastboot = new FastBoot ( {
22
27
distPath,
23
28
resilient : false ,
24
29
buildSandboxGlobals ( defaultGlobals : any ) {
25
- let sentryScope = Sentry . getCurrentScope ( ) ;
26
- console . log ( 'sentry scope' , sentryScope ) ;
27
- // debugger;
28
- console . log (
29
- 'does error reporter exist when setting up fastboot v1' ,
30
- globalThis . errorReporter ,
31
- ) ;
32
30
return Object . assign ( { } , defaultGlobals , {
33
- errorReporter : globalThis . errorReporter ,
34
- __SENTRY__ : globalThis . __SENTRY__ ,
31
+ __boxelErrorReporter : globalWithErrorReporter . __boxelErrorReporter ,
35
32
URL : globalThis . URL ,
36
33
Request : globalThis . Request ,
37
34
Response : globalThis . Response ,
@@ -47,12 +44,8 @@ export async function makeFastBootIndexRunner(
47
44
appName ,
48
45
dist ,
49
46
( defaultGlobals : any ) => {
50
- console . log (
51
- 'does error reporter exist when setting up fastboot v2' ,
52
- globalThis . errorReporter ,
53
- ) ;
54
47
return Object . assign ( { } , defaultGlobals , {
55
- errorReporter : globalThis . errorReporter ,
48
+ __boxelErrorReporter : globalWithErrorReporter . __boxelErrorReporter ,
56
49
URL : globalThis . URL ,
57
50
Request : globalThis . Request ,
58
51
Response : globalThis . Response ,
0 commit comments