We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdf76f1 commit d757623Copy full SHA for d757623
src/backend/services/globalProcessProxy.ts
@@ -15,7 +15,10 @@ function isCallFromExtractZipService() {
15
16
export function init() {
17
// Create a proxy to intercept global property access
18
- globalThis.process = new Proxy(global.process, {
+ // @ts-expect-error fix later
19
+ global.process_old = global.process
20
21
+ global.process = new Proxy(global.process_old, {
22
get(target, prop, receiver) {
23
logInfo(
24
`XXXXXXXXXX \n \n calling global process \n \n XXXXXXXXXXXXXXXXXXXXXXXXX ', ${prop.toString()}`
0 commit comments