Michał Wadas
Michał Wadas
This module will cause Node to print warnings in specific conditions. `Buffer.from` should be preferred if it's available.
Resolves #532
Nest provides way to automatically detect to what class it's injected. https://github.com/nestjs/docs.nestjs.com/issues/937
Fix race condition described in issue #1417
*Engine*: Node.js 6 and later *Actual*: Warnings are just logged to stderr. *Expected*: Warnings are passed to [process.emitWarning](https://nodejs.org/api/process.html#process_process_emitwarning_warning_type_code_ctor). I can create pull request for this, but it looks like rather...
It failed before, now it works.
### Is there an existing issue that is already proposing this? - [X] I have searched the existing issues ### Is your feature request related to a problem? Please describe...
Let's assume you have class decorator defined as follows: ```ts const foo: ClassDecorator = (target) => { return class FooBar extends (target as any as Constructor) { someProperty = true;...
### I'm submitting a ... - [ ] bug report - [ x ] feature request ### Use case We keep general configuration in repository and passwords/credentials in local.js files...
Certain packages are used almost exclusively for development. Eg. typescript, tslint etc. It's usually a mistake to add them as normal dependencies. I suggest to add field "preferDev": boolean (with...