Skip to content

Commit

Permalink
fix: downgrade version of nest axios (#3419)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludtkemorgan committed May 3, 2023
1 parent 7efc15d commit 7cf1a89
Show file tree
Hide file tree
Showing 3 changed files with 1,010 additions and 79 deletions.
8 changes: 4 additions & 4 deletions backend/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"dependencies": {
"@anchan828/nest-sendgrid": "^0.3.25",
"@google-cloud/translate": "^6.2.6",
"@nestjs/axios": "2.0.0",
"@nestjs/axios": "1.0.1",
"@nestjs/cli": "^8.2.1",
"@nestjs/common": "^8.3.1",
"@nestjs/config": "^1.2.0",
Expand Down Expand Up @@ -104,13 +104,13 @@
"@types/supertest": "2.0.12",
"dotenv": "^8.2.0",
"fishery": "^0.3.0",
"jest": "^26.5.3",
"jest": "^29.5.0",
"supertest": "6.2.4",
"swagger-axios-codegen": "0.11.16",
"ts-jest": "26.4.1",
"ts-jest": "^29.1.0",
"ts-loader": "^8.0.4",
"tsconfig-paths": "^3.9.0",
"yargs": "^16.0.3"
"yargs": "^17.7.2"
},
"jest": {
"moduleFileExtensions": [
Expand Down
2 changes: 1 addition & 1 deletion backend/core/src/seeder/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ const seedListings = async (
}

async function seed() {
const app = await NestFactory.create(SeederModule.forRoot({ test: argv.test }))
const app = await NestFactory.create(SeederModule.forRoot({ test: argv["test"] }))
// Starts listening for shutdown hooks
app.enableShutdownHooks()
const userService = await app.resolve<UserService>(UserService)
Expand Down
Loading

0 comments on commit 7cf1a89

Please sign in to comment.