Micael Levi L. Cavalcante

Results 257 comments of Micael Levi L. Cavalcante

:+1: migrating the codebase would hurt a bit but I believe have dedicated packages will help on maintaining and improving `@nestjs/terminus` later on

an workaround for this (I guess): ```ts export class SomeModule { static registerAsync(options: AsyncModuleOptions): DynamicModule { return { module: SomeModule, imports: [ BullModule.registerQueueAsync({ // ====================================== // imports: [ { module:...

btw I just prototyped the implementation for this feature [here](https://github.com/micalevisk/bull/commit/6fdc6e15027b7331a04537a7d4338dd35930fecd) and it worked. If you want to give it a try, just install it doing `npm i github:micalevisk/bull#build-of-feat-issue-459` @1valdis, Feel...

regarding extending the JSON format, would be feasible to track the lines of each occurrence like: ```json { "total": 68, "successful": 67, "failures": 1, "timeouts": 0, "redirects": 0, "excludes": 0,...

that would be great. Unfortunately, I didn't know Rust so I can't help you guys :/

it won't work because `app.module.ts` doesn't exports a valid typeorm config. `typeorm` doesn't know about `@nestjs/typeorm` stuff

> Is it possible to disable index fallback to avoid this exception? @raphaelsoul I don't think so due to the following: https://github.com/nestjs/serve-static/blob/72dc754f48d109215221339897a507d13388cd0b/lib/loaders/express.loader.ts#L27 https://github.com/nestjs/serve-static/blob/72dc754f48d109215221339897a507d13388cd0b/lib/loaders/abstract.loader.ts#L13-L15

idk @kamilmysliwiec we have a mismatch between the version here vs the one in the package https://github.com/nestjs/azure-func-http/blob/ddeb92c468526de8bbe374863ba4a21fb25b26c5/package.json#L23-L24 https://github.com/nestjs/azure-func-http/blob/ddeb92c468526de8bbe374863ba4a21fb25b26c5/package.json#L3 While the published package has: ![image](https://user-images.githubusercontent.com/13461315/170315508-694072cc-3f8e-4283-8da5-fcf4da296e2d.png)

indeed. The type inference from `ConfigService` doesn't work with the latest version of `typescript` (v4.7.2), but it does in v4.6.3. Here's the demo of such: https://user-images.githubusercontent.com/13461315/171713700-d38a9f2a-1b24-4f4d-bc4b-9b222ffddd85.mp4 I can't tell if...