From c15bf16d2e51add1b543c1103f98547249da267e Mon Sep 17 00:00:00 2001 From: Dev Singh Date: Wed, 9 Jul 2025 00:34:56 -0400 Subject: [PATCH 1/2] Update package.json --- src/api/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/package.json b/src/api/package.json index 9c682b05..3c3d7b24 100644 --- a/src/api/package.json +++ b/src/api/package.json @@ -7,7 +7,7 @@ "license": "BSD-3-Clause", "type": "module", "scripts": { - "build": "tsc && node build.js && tsx createSwagger.ts", + "build": "tsc && node build.js", "dev": "cross-env DISABLE_AUDIT_LOG=true cross-env LOG_LEVEL=debug concurrently --names 'esbuild,server' 'node esbuild.config.js --watch' 'cd ../../dist_devel && nodemon index.js'", "typecheck": "tsc --noEmit", "lint": "eslint . --ext .ts --cache", From 0cc434f403df66aca9bfa446d40a29692eecb33c Mon Sep 17 00:00:00 2001 From: Dev Singh Date: Wed, 9 Jul 2025 00:35:30 -0400 Subject: [PATCH 2/2] Update Makefile --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 647123fc..e70337ff 100644 --- a/Makefile +++ b/Makefile @@ -59,6 +59,7 @@ clean: build: src/ cloudformation/ yarn -D VITE_BUILD_HASH=$(GIT_HASH) yarn build + cd src/api && npx tsx createSwagger.ts cp -r src/api/resources/ dist/api/resources rm -rf dist/lambda/sqs sam build --template-file cloudformation/main.yml --use-container --parallel