From 69ee88aebcc37c30ffbda69fef82db04d1e13660 Mon Sep 17 00:00:00 2001 From: Steve Tautonico Date: Wed, 12 Oct 2022 16:11:53 -0400 Subject: [PATCH] chore: Upgrade rxjs is required Without upgrading rxjs, we get `TypeError: (0 , rxjs_1.lastValueFrom) is not a function` This solution comes from https://github.com/nestjs/nest/issues/7468 --- backend/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/package.json b/backend/package.json index e0df3e17..5bf134e8 100644 --- a/backend/package.json +++ b/backend/package.json @@ -28,7 +28,8 @@ "passport-jwt": "^4.0.0", "passport-local": "^1.0.0", "reflect-metadata": "^0.1.13", - "rimraf": "^3.0.2" + "rimraf": "^3.0.2", + "rxjs": "^7.5.7" }, "devDependencies": { "@nestjs/cli": "^9.1.4",