Skip to content

Commit 228731b

Browse files
author
Eric Anderson
committed
Update to Angular 2 RC 1
1 parent c9cb1ec commit 228731b

File tree

10 files changed

+30
-22
lines changed

10 files changed

+30
-22
lines changed

src/ASP.NET-Core-SPAs/Angular/app.component.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ASP.NET-Core-SPAs/Angular/app.component.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import {Component} from 'angular2/core';
2-
import {OnInit} from 'angular2/core';
3-
import {HTTP_PROVIDERS} from 'angular2/http';
1+
import {Component} from '@angular/core';
2+
import {OnInit} from '@angular/core';
3+
import {HTTP_PROVIDERS} from '@angular/http';
44
import {Contact} from './contact';
55
import {ContactDetailComponent} from './contact-detail.component';
66
import {ContactService} from './contact.service';

src/ASP.NET-Core-SPAs/Angular/boot.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ASP.NET-Core-SPAs/Angular/boot.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {bootstrap} from 'angular2/platform/browser'
1+
import {bootstrap} from '@angular/platform-browser-dynamic'
22
import {AppComponent} from './app.component'
33

44
bootstrap(AppComponent);

src/ASP.NET-Core-SPAs/Angular/contact-detail.component.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ASP.NET-Core-SPAs/Angular/contact-detail.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Component} from 'angular2/core';
1+
import {Component} from '@angular/core';
22
import {Contact} from './contact';
33

44
@Component({

src/ASP.NET-Core-SPAs/Angular/contact.service.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ASP.NET-Core-SPAs/Angular/contact.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import {Injectable} from 'angular2/core';
2-
import {Http} from 'angular2/http';
1+
import {Injectable} from '@angular/core';
2+
import {Http} from '@angular/http';
33
import {Contact} from './contact';
44
import {Observable} from 'rxjs/Observable';
55

src/ASP.NET-Core-SPAs/package.json

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,21 @@
22
"name": "ASP.NET",
33
"version": "0.0.0",
44
"dependencies": {
5-
"angular2": "2.0.0-beta.17",
6-
"systemjs": "0.19.26",
7-
"es6-promise": "^3.1.2",
5+
"@angular/common": "2.0.0-rc.1",
6+
"@angular/compiler": "2.0.0-rc.1",
7+
"@angular/core": "2.0.0-rc.1",
8+
"@angular/http": "2.0.0-rc.1",
9+
"@angular/platform-browser": "2.0.0-rc.1",
10+
"@angular/platform-browser-dynamic": "2.0.0-rc.1",
11+
"@angular/router": "2.0.0-rc.1",
12+
"@angular/router-deprecated": "2.0.0-rc.1",
13+
"@angular/upgrade": "2.0.0-rc.1",
14+
15+
"systemjs": "0.19.27",
816
"es6-shim": "^0.35.0",
9-
"reflect-metadata": "0.1.3",
10-
"rxjs": "5.0.0-beta.7",
11-
"zone.js": "0.6.11"
17+
"reflect-metadata": "^0.1.3",
18+
"rxjs": "5.0.0-beta.6",
19+
"zone.js": "^0.6.12"
1220
},
1321
"devDependencies": {
1422
"es6-module-loader": "^0.17.8",

0 commit comments

Comments
 (0)