Skip to content

Commit

Permalink
Fixed global process object in deno
Browse files Browse the repository at this point in the history
  • Loading branch information
fayeed committed Oct 9, 2023
1 parent f1ca0c4 commit a7dd1d5
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions executor/src/deno.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,7 @@ Object.defineProperty(globalThis, "global", {
});

Object.defineProperty(globalThis, "process", {
value: {
...processModule,
env: {
NODE_ENV: "production"
}
},
value: processModule,
enumerable: false,
writable: true,
configurable: true,
Expand Down

0 comments on commit a7dd1d5

Please sign in to comment.