diff options
Diffstat (limited to 'js/build.ts')
-rw-r--r-- | js/build.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/build.ts b/js/build.ts index 1b02e7862..157de30bc 100644 --- a/js/build.ts +++ b/js/build.ts @@ -18,9 +18,9 @@ export interface BuildInfo { export const build: BuildInfo = { // These string will be replaced by rollup /* eslint-disable-next-line @typescript-eslint/no-explicit-any */ - arch: `ROLLUP_REPLACE_ARCH` as any, + arch: `DENO_REPLACE_ARCH` as any, /* eslint-disable-next-line @typescript-eslint/no-explicit-any */ - os: `ROLLUP_REPLACE_OS` as any + os: `DENO_REPLACE_OS` as any }; // TODO(kevinkassimo): deprecate Deno.platform |