Skip to content

Commit

Permalink
yarn: latest
Browse files Browse the repository at this point in the history
  • Loading branch information
mlajkim committed Sep 19, 2024
1 parent f5be9be commit 309fd98
Show file tree
Hide file tree
Showing 4 changed files with 328 additions and 372 deletions.
36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,48 +22,48 @@
"test:e2e": "jest --config ./jest.config.js"
},
"dependencies": {
"@nestjs/common": "^10.4.1",
"@nestjs/core": "^10.4.1",
"@nestjs/common": "^10.4.3",
"@nestjs/core": "^10.4.3",
"@nestjs/jwt": "^10.2.0",
"@nestjs/mongoose": "^10.0.10",
"@nestjs/platform-express": "^10.4.1",
"@nestjs/platform-express": "^10.4.3",
"@types/cookie-parser": "^1.4.7",
"axios": "^1.7.4",
"axios": "^1.7.7",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cookie-parser": "^1.4.6",
"deep-object-diff": "^1.1.9",
"dotenv": "^16.4.5",
"google-auth-library": "^9.13.0",
"iso-639-1": "^3.1.2",
"google-auth-library": "^9.14.1",
"iso-639-1": "^3.1.3",
"luxon": "^3.5.0",
"mongoose": "^8.5.3",
"openai": "^4.56.0",
"mongoose": "^8.6.3",
"openai": "^4.62.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"webpack": "^5.93.0"
"webpack": "^5.94.0"
},
"devDependencies": {
"@nestjs/cli": "^10.4.4",
"@nestjs/schematics": "^10.1.3",
"@nestjs/testing": "^10.4.1",
"@nestjs/cli": "^10.4.5",
"@nestjs/schematics": "^10.1.4",
"@nestjs/testing": "^10.4.3",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^22.4.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "^29.2.4",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4"
"typescript": "^5.6.2"
}
}
6 changes: 5 additions & 1 deletion src/lambdas/get-env.lambda.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ export const envLambda = {
},
getCorsOrigin: (): string[] => {
const got = envLambda.get(SupportedEnvAttr.Cors)
if (!got) return ['http://localhost:3000,http://localhost:3100','http://localhost:3200'] // default value
if (!got)
return [
'http://localhost:3000,http://localhost:3100',
'http://localhost:3200',
] // default value

return got.split(',')
},
Expand Down
2 changes: 1 addition & 1 deletion yarn-latest.record
Original file line number Diff line number Diff line change
@@ -1 +1 @@
240818
240920
Loading

0 comments on commit 309fd98

Please sign in to comment.