diff --git a/.circleci/config.yml b/.circleci/config.yml index 8fee5a3..62fa46a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -30,7 +30,7 @@ jobs: name: "Set ECR_ENV based on event type" command: | if [ "${CIRCLE_PULL_REQUEST}" != "" ]; then - export ECR_ENV="DEV" + export ECR_ENV="QA" else export ECR_ENV="PROD" fi diff --git a/package.json b/package.json index 6bcfe4c..125d911 100644 --- a/package.json +++ b/package.json @@ -6,8 +6,8 @@ "scripts": { "build:proto:server": "node bin/server", "build:proto": "node bin/server", - "build:app": "rimraf dist && tsc -b", "build": "node bin/server && rimraf dist && tsc -b", + "build:app": "rimraf dist && tsc -b", "clean": "rimraf dist", "start": "ts-node-dev --respawn --transpile-only src/server.ts", "prepare": "husky install",