Skip to content

Commit 45bf839

Browse files
committedMar 1, 2024
wip fix
1 parent 3705546 commit 45bf839

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed
 

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"generate": "nest g resource",
2929
"npm-check-updates": "npx npm-check-updates",
3030
"start:dev": "nest start --watch",
31-
"start:debug": "nest start --debug --watch",
31+
"start:debug": "nest start --debug 0.0.0.0 --watch",
3232
"start:prod": "node dist/main",
3333
"console": "node dist/src/console"
3434
},

‎packages/sdk/assets/swagger.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@
882882
"info": {
883883
"title": "@libertech-fr/mailrest",
884884
"description": "An email retrieval system with a REST API built with NestJS in NodeJS",
885-
"version": "0.0.6",
885+
"version": "0.0.14",
886886
"contact": {}
887887
},
888888
"tags": [],

‎src/app.module.ts

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import { AclGuard } from '~/_common/guards/acl.guard'
1919
import { DtoValidationPipe } from '~/_common/pipes/dto-validation.pipe'
2020
import { ScheduleModule } from '@nestjs/schedule'
2121
import { MailerModule, MailerOptions } from '@nestjs-modules/mailer'
22-
import { HandlebarsAdapter } from '@nestjs-modules/mailer/dist/adapters/handlebars.adapter'
2322
import { AccountsMetadataV1 } from '~/accounts/_dto/account.dto'
2423

2524
@Module({

0 commit comments

Comments
 (0)
Please sign in to comment.