angular-cn/packages/core/schematics/migrations/google3
crisbeto f5982fd746 feat(core): add dynamic queries schematic (#32231)
Adds a schematic that will remove the explicit `static: false` flag from dynamic queries. E.g.

```ts
import { Directive, ViewChild, ContentChild, ElementRef } from '@angular/core';

@Directive()
export class MyDirective {
  @ViewChild('child', { static: false }) child: any;
  @ViewChild('secondChild', { read: ElementRef, static: false }) secondChild: ElementRef;
  @ContentChild('thirdChild', { static: false }) thirdChild: any;
}
```

```ts
import { Directive, ViewChild, ContentChild, ElementRef } from '@angular/core';

@Directive()
export class MyDirective {
  @ViewChild('child') child: any;
  @ViewChild('secondChild', { read: ElementRef }) secondChild: ElementRef;
  @ContentChild('thirdChild') thirdChild: any;
}
```

PR Close #32231
2019-09-11 19:14:03 -04:00
..
BUILD.bazel feat(core): add dynamic queries schematic (#32231) 2019-09-11 19:14:03 -04:00
dynamicQueriesRule.ts feat(core): add dynamic queries schematic (#32231) 2019-09-11 19:14:03 -04:00
explicitQueryTimingRule.ts refactor(core): move google3 migration rules into single directory (#30956) 2019-07-23 15:52:40 -07:00
noMissingInjectableRule.ts refactor(core): move google3 migration rules into single directory (#30956) 2019-07-23 15:52:40 -07:00
noTemplateVariableAssignmentRule.ts refactor(core): move google3 migration rules into single directory (#30956) 2019-07-23 15:52:40 -07:00
rendererToRenderer2Rule.ts refactor(core): move renderer2 migration lint rule into google3 folder (#31817) 2019-08-09 10:46:45 -07:00
undecoratedClassesWithDecoratedFieldsRule.ts feat(core): add undecorated classes with decorated fields schematic (#32130) 2019-08-22 10:05:38 -07:00