Remove source map for docker build.

This commit is contained in:
Patrick Fic
2025-11-06 15:15:32 -08:00
parent ebe3d8821d
commit 17b58238b4
4 changed files with 2 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "bodyshop-media-server", "name": "bodyshop-media-server",
"version": "1.0.14", "version": "1.0.15",
"license": "UNLICENSED", "license": "UNLICENSED",
"engines": { "engines": {
"node": ">=18.0.0" "node": ">=18.0.0"

View File

@@ -1,4 +1,3 @@
import "source-map-support/register";
import bodyParser from "body-parser"; import bodyParser from "body-parser";
import compression from "compression"; import compression from "compression";
import cors from "cors"; import cors from "cors";

View File

@@ -1,6 +1,3 @@
// Simple test to verify source maps are working
import "source-map-support/register";
console.log("Testing source map support..."); console.log("Testing source map support...");
function testError() { function testError() {

View File

@@ -43,7 +43,7 @@ export class DailyS3Scheduler {
} }
); );
logger.info(`Daily S3 sync scheduler started. Will run at midnight PST/PDT.`); logger.info(`Daily scheduler started. Will run at midnight PST/PDT.`);
logger.info(`Next sync scheduled for: ${this.getNextRunTime()}`); logger.info(`Next sync scheduled for: ${this.getNextRunTime()}`);
} }