fix: missing import for @hapi/joi (#274)

Replaced the module in the dependencies but not in actual usage
This commit is contained in:
Julian Tölle 2023-05-07 13:36:55 +02:00 committed by GitHub
parent aa4f2c4698
commit bbc7ec0817
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View file

@ -86,7 +86,6 @@
"@nestjs/testing": "9.4.0", "@nestjs/testing": "9.4.0",
"@types/cookie-parser": "1.4.3", "@types/cookie-parser": "1.4.3",
"@types/express": "4.17.17", "@types/express": "4.17.17",
"@types/hapi__joi": "17.1.9",
"@types/jest": "29.5.1", "@types/jest": "29.5.1",
"@types/lodash": "^4.14.194", "@types/lodash": "^4.14.194",
"@types/long": "4.0.2", "@types/long": "4.0.2",

View file

@ -1,6 +1,6 @@
import * as Joi from "@hapi/joi";
import { Module } from "@nestjs/common"; import { Module } from "@nestjs/common";
import { ConfigModule as NestConfigModule } from "@nestjs/config"; import { ConfigModule as NestConfigModule } from "@nestjs/config";
import * as Joi from "joi";
@Module({ @Module({
imports: [ imports: [