angular/modules_dart/transform/test/transform
Victor Berchet da9b46a071 feat: camelCase Angular (kebab-case removal)
BREAKING CHANGE:

Angular is now fully camel case.

Before:

    <p *ng-if="cond">
    <my-cmp [my-prop]="exp">
    <my-cmp (my-event)="action()">
    <my-cmp [(my-prop)]="prop">
    <input #my-input>
    <template ng-for #my-item [ng-for-of]=items #my-index="index">

After

    <p *ngIf="cond">
    <my-cmp [myProp]="exp">
    <my-cmp (myEvent)="action()">
    <my-cmp [(myProp)]="prop">
    <input #myInput>`,
    <template ngFor="#my-item" [ngForOf]=items #myIndex="index">

The full details are found in [angular2/docs/migration/kebab-case.md](https://github.com/angular/angular/blob/master/modules/angular2/docs/migration/kebab-case.md)
2015-12-09 19:59:40 -08:00
..
common feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
deferred_rewriter feat(dart/transform): Bail early for files with no deferred libraries 2015-11-12 11:27:46 -08:00
directive_metadata_linker SQUASH ME! Unit test updates. 2015-11-05 12:19:27 -08:00
directive_processor refactor(core): move render/dom from core 2015-11-17 15:53:55 -08:00
inliner_for_test fix(dart/transform): Consider of line numbers in inliner_for_test 2015-11-17 01:51:58 +00:00
integration fix(dart/transform): Omit bootstrap.dart in ng_deps 2015-11-18 22:46:29 +00:00
reflection_remover feature(dart/transform): Inject initReflector at @AngularEntrypoint 2015-12-01 13:34:29 -08:00
stylesheet_compiler feat(dart/transform): Do not declare outputs 2015-10-21 14:20:03 -07:00
template_compiler feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
transform.server.spec.dart fix(dart/transform): Consider of line numbers in inliner_for_test 2015-11-17 01:51:58 +00:00