angular/modules
vsavkin 2dcf714d2b refactor(pipes): use Injector instead of pipe factories for pipe instantiation
BREAKING CHANGE
    - Pipe factories have been removed.
    - PIpe names to pipe implementations are 1-to-1  instead of 1-to-*

 Before:
     class DateFormatter {
         transform(date, args){}
     }

     class DateFormatterFactory {
       supporst(obj) { return true; }
       create(cdRef) { return new DateFormatter(); }
     }
     new Pipes({date: [new DateFormatterFactory()]})

After
    class DateFormatter {
      transform(date, args){}
    }
    new Pipes({date: DateFormatter})
2015-08-07 10:02:11 -07:00
..
angular2 refactor(pipes): use Injector instead of pipe factories for pipe instantiation 2015-08-07 10:02:11 -07:00
angular2_material chore(material): clean up old workarounds with new features. 2015-08-06 17:54:34 -07:00
benchmarks chore(build): enable type-checking for TypeScript ES6 emit. 2015-08-06 16:57:52 -07:00
benchmarks_external chore(build): enable type-checking for TypeScript ES6 emit. 2015-08-06 16:57:52 -07:00
benchpress chore(build): enable type-checking for TypeScript ES6 emit. 2015-08-06 16:57:52 -07:00
examples chore(material): clean up old workarounds with new features. 2015-08-06 17:54:34 -07:00
rtts_assert docs(modules): fix typos 2015-07-07 16:14:43 -07:00