ScottSWu
|
86fbd50c3d
|
refactor(TypeScript): Add noImplicitAny
We automatically insert explicit 'any's where needed. These need to be
addressed as in #9100.
Fixes #4924
|
2016-06-08 16:20:50 -07:00 |
Igor Minar
|
2e1f3f003d
|
build: adding basic e2e testing infrastructure
|
2016-05-02 08:15:10 -07:00 |
Igor Minar
|
a66cdb469f
|
repackaging: all the repackaging changes squashed
|
2016-05-01 20:51:00 -07:00 |
Alex Rickabaugh
|
60727c4d2b
|
revert(format): Revert "chore(format): update to latest formatter"
This reverts commit 03627aa84d .
|
2016-04-12 09:41:01 -07:00 |
Alex Eagle
|
03627aa84d
|
chore(format): update to latest formatter
Closes #7958
|
2016-04-11 22:15:23 +00:00 |
Pawel Kozlowski
|
8d3e5596dc
|
refactor(playground): remove imports from 'angular2/angular2'
Part of #5710
Closes #5798
|
2015-12-10 21:46:51 +00:00 |
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 |
Rob Wormald
|
3fa287aae2
|
refactor(EventEmitter): rename .next() to .emit()
BREAKING CHANGE:
EventEmitter#next(value) is deprecated, use EventEmitter#emit(value)
instead.
Closes #4287
Closes #5302
|
2015-11-18 22:16:40 +00:00 |
Misko Hevery
|
1b78342e23
|
chore(ngUpgrade): Move into Angular2
This is moving ngUpgrade into the main repository per #4838.
The ngUpgrade is published from the main import consistent with
https://docs.google.com/document/d/1rbVTKTYLz6p2smQNYI8h4-QN-m2PS6F3iQIDmSzn0Ww/edit#heading=h.6cxvr9awtf5r
Closes #4931
|
2015-10-31 20:48:27 -07:00 |
Misko Hevery
|
9d0d33f95a
|
feat(ngUpgrade): simple example
|
2015-10-19 12:43:28 -07:00 |