fix(build): do not generate sourcemap, fixes #295

This commit is contained in:
Bastian Ike
2023-01-19 10:10:21 +01:00
committed by Bastian
parent 1bb5fdb0ba
commit e4d9a6fb97
3 changed files with 4 additions and 3 deletions

View File

@@ -55,7 +55,7 @@ var runCommand = function (command) {
var executedCommand = (0, child_process_1.spawn)(command, {
stdio: "inherit",
shell: true,
env: __assign({ REACT_APP_RADAR_NAME: "AOE Technology Radar", REACT_APP_BUILDHASH: (0, crypto_1.randomBytes)(10).toString("hex") }, process.env),
env: __assign({ REACT_APP_RADAR_NAME: "AOE Technology Radar", REACT_APP_BUILDHASH: (0, crypto_1.randomBytes)(10).toString("hex"), GENERATE_SOURCEMAP: "false" }, process.env),
});
executedCommand.on("error", function (error) {
reject(error);