Skip to content

Commit bce409a

Browse files
committedOct 24, 2024
chore(apps): Fixed a type issue
1 parent 48020c7 commit bce409a

File tree

3 files changed

+123
-45
lines changed

3 files changed

+123
-45
lines changed
 

‎apps/nest/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"types": "tsc --noEmit"
1010
},
1111
"dependencies": {
12-
"@nestjs/common": "10.4.1",
13-
"@nestjs/core": "10.4.1",
12+
"@nestjs/common": "10.4.6",
13+
"@nestjs/core": "10.4.6",
1414
"@nestjs/platform-express": "10.4.4",
1515
"@nestjs/swagger": "7.4.2",
1616
"@spuxx/nest-utils": "workspace:@spuxx/nest-utils@*",

‎apps/nest/src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ async function bootstrap() {
1313
logger,
1414
});
1515

16-
await AuthModule.bootstrap(app, authConfig);
16+
await AuthModule.bootstrap(app as never, authConfig);
1717

1818
await app.listen(3000);
1919
Logger.log(`Application is running on: http://localhost:3000`, 'Bootstrap');

‎pnpm-lock.yaml

+120-42
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)