Yury
Yury
For anyone coming here searching for an easy way to spy on pino output. I've ended up using a simpler version of the sink function suggested by @mcollina, that will...
Is it possible to add options object to `@Query()` decorator? Something along the lines of: ```ts getAll(@Query(`someQuery`, { optional: true }) someQuery?: string) getAllWithTransform(@Query(`someQuery`, new Pipe(...), { optional: true })...
I'd like to resurface this as I've stumbled upon this strange behaviour where luxon can't parse its own ISO strings: ```typescript const time = DateTime.fromSeconds(0).toUTC().toISO(); console.log(time); const duration = Duration.fromISO(time);...
Hey @thetrevdev @PatElder @kennyhyun ! I'm trying to use `serverless-offline`, that depends on this repo, and still can't get nodejs14.x to work, were you guys able to make it work?...
Hey @lwouis , first of all thank you for the amazing software, alttab is beyond anything else there is out there. My mac experience would be unbearable without it 🙏...
Hey guys(@lovesharma95 @micalevisk), I had some issues with config module load functionality, which brought me here. I'm trying to understand more about it, so excuse me if I'm totally off....
@micalevisk Sorry, I wasn't clear. I meant that currently `forRoot` is sync, the changes in this PR will make it async. This will be confusing, when considering the convention of...
I've had a similar issue, there is a bug with how you configured TypeOrm: ```typescript TypeOrmModule.forRootAsync({ imports: [ConfigModule], // ({ type: configService.get('dbType'), // ... other configuration using environment variables }),...
@kamilmysliwiec Have you read the conversation above? Is there actually a good reason for adding another way to do this asynchronously?
@kamilmysliwiec wouldn't a better approach be to add a validation step that uses validation schemas to where the async loaders are resolved? That way no API is broken, and the...