mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 13:11:02 +00:00
fix: missing import for @hapi/joi (#274)
Replaced the module in the dependencies but not in actual usage
This commit is contained in:
parent
aa4f2c4698
commit
bbc7ec0817
2 changed files with 1 additions and 2 deletions
|
|
@ -86,7 +86,6 @@
|
|||
"@nestjs/testing": "9.4.0",
|
||||
"@types/cookie-parser": "1.4.3",
|
||||
"@types/express": "4.17.17",
|
||||
"@types/hapi__joi": "17.1.9",
|
||||
"@types/jest": "29.5.1",
|
||||
"@types/lodash": "^4.14.194",
|
||||
"@types/long": "4.0.2",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import * as Joi from "@hapi/joi";
|
||||
import { Module } from "@nestjs/common";
|
||||
import { ConfigModule as NestConfigModule } from "@nestjs/config";
|
||||
import * as Joi from "joi";
|
||||
|
||||
@Module({
|
||||
imports: [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue