nice running in google cloud run

This commit is contained in:
talksik
2022-06-03 11:41:37 -07:00
parent b7787afcc2
commit da5861086e
2 changed files with 4 additions and 5 deletions
+3 -4
View File
@@ -7,11 +7,10 @@
"common": "rm -rf ./common && cp -r ../common/src ./common/",
"dev": "NODE_ENV=development && yarn common && nodemon",
"start:dev": "ts-node index.ts",
"start": "node dist/index.js",
"lint": "eslint --ext .ts,.tsx .",
"build": "npm run common && npm run lint && tsc -p .",
"gcp-build": "npm run build",
"production": "NODE_ENV=production nodemon"
"build": "npm run lint && tsc -p .",
"start": "node dist/index.js",
"gcp-build": "npm run build"
},
"devDependencies": {
"@types/express": "^4.17.13",
@@ -32,7 +32,7 @@ export class ConversationMember {
public memberState: MemberState,
public isActive: boolean = true,
public lastActiveDate: Date = null,
public lastActiveDate: Date,
public joinedDate = Date,
) {}
}