nice running in google cloud run
This commit is contained in:
@@ -7,11 +7,10 @@
|
|||||||
"common": "rm -rf ./common && cp -r ../common/src ./common/",
|
"common": "rm -rf ./common && cp -r ../common/src ./common/",
|
||||||
"dev": "NODE_ENV=development && yarn common && nodemon",
|
"dev": "NODE_ENV=development && yarn common && nodemon",
|
||||||
"start:dev": "ts-node index.ts",
|
"start:dev": "ts-node index.ts",
|
||||||
"start": "node dist/index.js",
|
|
||||||
"lint": "eslint --ext .ts,.tsx .",
|
"lint": "eslint --ext .ts,.tsx .",
|
||||||
"build": "npm run common && npm run lint && tsc -p .",
|
"build": "npm run lint && tsc -p .",
|
||||||
"gcp-build": "npm run build",
|
"start": "node dist/index.js",
|
||||||
"production": "NODE_ENV=production nodemon"
|
"gcp-build": "npm run build"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/express": "^4.17.13",
|
"@types/express": "^4.17.13",
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ export class ConversationMember {
|
|||||||
|
|
||||||
public memberState: MemberState,
|
public memberState: MemberState,
|
||||||
public isActive: boolean = true,
|
public isActive: boolean = true,
|
||||||
public lastActiveDate: Date = null,
|
public lastActiveDate: Date,
|
||||||
public joinedDate = Date,
|
public joinedDate = Date,
|
||||||
) {}
|
) {}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user