From 09285206950dff0f402205d168f8d0af785e1167 Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Fri, 27 Sep 2024 22:53:09 -0400 Subject: [PATCH] Fix Reporter --- scripts/build/buildWeb.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/build/buildWeb.mjs b/scripts/build/buildWeb.mjs index ede910a6..0db00773 100644 --- a/scripts/build/buildWeb.mjs +++ b/scripts/build/buildWeb.mjs @@ -23,7 +23,7 @@ import { appendFile, mkdir, readdir, readFile, rm, writeFile } from "fs/promises import { join } from "path"; import Zip from "zip-local"; -import { BUILD_TIMESTAMP, commonOpts, globPlugins, IS_DEV, IS_REPORTER, VERSION } from "./common.mjs"; +import { BUILD_TIMESTAMP, commonOpts, globPlugins, IS_DEV, IS_REPORTER, IS_COMPANION_TEST, VERSION } from "./common.mjs"; /** * @type {esbuild.BuildOptions} @@ -45,6 +45,7 @@ const commonOptions = { IS_STANDALONE: "true", IS_DEV: String(IS_DEV), IS_REPORTER: String(IS_REPORTER), + IS_COMPANION_TEST: String(IS_COMPANION_TEST), IS_DISCORD_DESKTOP: "false", IS_VESKTOP: "false", IS_EQUIBOP: "false",