Jackie McDoniel
Jackie McDoniel
Can you provide reproduction steps for this?
@kamilmysliwiec it looks like the schematics generator doesn't take into account the package manager. I'm trying to look into where that can be added. Let me know if you know...
We'll need to make an update to the schematics that Kamil pointed out. You're welcome to make a PR or wait for one of us to have the time to...
For anyone coming to this issue at the moment, request scoping an interceptor or guard doesn't make much sense because they already have access to the request object. What can...
> Request scoping an interceptor or guard may make sense in case they depend on request-scoped providers which factory functions perform some complex, async operations. You're right. I think I...
The code here looks solid. If we can get the conflicts resolved I could see this being useful.
> Upon reflection I think this PR doesn't make sense as-is. I think it would be better to alter the type of include to: > > ```ts > type IncludeFn...
> it is not possible to make a space in the name of the command argument. Does commander itself support that by default? Huh, TIL. Could you add to the...
This is something I need to add support for I believe. I'm thinking they'll be options as a part of the `@Command()` decorator, something like ```ts @Command({ name: 'foo', options:...
You can access the command instance in v3.0.0 with `this.command` after extending the `CommandRunner`