Slava
Slava
I've created a similar tool: [super-rush](https://github.com/domclick/super-rush) for exactly this purpose. Would love to see this implemented in Rush natively, because we have a lot of separate monorepos in our organization...
Hello @markotom, thank you for your effort! However, what will happen if I have the below code in my module? ```js module.exports = { foo: 'foo', default: { foo: 'FOO'...
Hello! Thank you for this great module and your hard work! However, I'm very interested to use it in my next project with TypeScript 2.2 and Node.js. Is it possible?...
If someone is interested, I've found a way to use DI from Angular 2 directly. Please read this comprehensive material: https://angular.io/docs/ts/latest/guide/dependency-injection.html#!#di-metadata. ## Example: ```typescript import 'reflect-metadata'; import {ReflectiveInjector, Injectable} from...
I'm writing an [ESM migration guide](https://gist.github.com/slavafomin/cd7a54035eff5dc1c7c2eff096b23b6b) and have stumbled upon this problem too. Has anybody found a solution for this?
By the way, the correct way to use both `disabled` and `updateOn` is the following: ```js formBuilder.group({ foo: [ { value: 'Foo', disabled: true, }, { updateOn: 'blur', }, ],...
Also, the [code here](https://github.com/angular/angular/blob/a92a89b0eb127a59d7e071502b5850e57618ec2d/packages/forms/src/form_builder.ts#L174) is just misleading: `const validator: ValidatorFn = controlConfig.length > 1 ? controlConfig[1] : null;` It should be: ```typescript const validatorOrOpts: ( | ValidatorFn | ValidatorFn[] |...
Hello! I'm getting the same error: ``` resolvconf: Error: Command not recognized Usage: resolvconf (-d IFACE|-a IFACE|-u|--enable-updates|--disable-updates|--updates-are-enabled) ``` ``` $ cat /etc/issue Ubuntu 16.04.4 LTS ``` ``` $ uname -a...
@jaywcjlove I'm not sure I understand what linting tools have to do with built-time code transformations. Right now, this plugin would delete imports in all formats, however, I want to...