Skip to content

Commit cee6bbc

Browse files
authored
Merge pull request NativeScript#452 from NativeScript/hdeshev/ng-2.0.0
Upgrade to NG 2.0.0 official
2 parents d6d628d + c06c02f commit cee6bbc

File tree

4 files changed

+30
-30
lines changed

4 files changed

+30
-30
lines changed

nativescript-angular/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "nativescript-angular",
4-
"version": "0.6.1",
4+
"version": "1.0.0",
55
"description": "An Angular 2 renderer that lets you build mobile apps with NativeScript.",
66
"homepage": "http://www.telerik.com",
77
"bugs": "http://www.telerik.com",
@@ -19,15 +19,15 @@
1919
},
2020
"dependencies": {
2121
"nativescript-intl": "^0.0.4",
22-
"@angular/core": "2.0.0-rc.7",
23-
"@angular/common": "2.0.0-rc.7",
24-
"@angular/compiler": "2.0.0-rc.7",
25-
"@angular/http": "2.0.0-rc.7",
26-
"@angular/platform-browser": "2.0.0-rc.7",
27-
"@angular/platform-browser-dynamic": "2.0.0-rc.7",
28-
"@angular/platform-server": "2.0.0-rc.7",
29-
"@angular/forms": "2.0.0-rc.7",
30-
"@angular/router": "3.0.0-rc.3",
22+
"@angular/core": "2.0.0",
23+
"@angular/common": "2.0.0",
24+
"@angular/compiler": "2.0.0",
25+
"@angular/http": "2.0.0",
26+
"@angular/platform-browser": "2.0.0",
27+
"@angular/platform-browser-dynamic": "2.0.0",
28+
"@angular/platform-server": "2.0.0",
29+
"@angular/forms": "2.0.0",
30+
"@angular/router": "3.0.0",
3131
"rxjs": "5.0.0-beta.12",
3232
"reflect-metadata": "^0.1.8",
3333
"parse5": "1.3.2",

ng-sample/app/app.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ function makeExampleModule(componentType) {
9898
return ExampleModuleForComponent;
9999
}
100100

101-
//platformNativeScriptDynamic().bootstrapModule(makeExampleModule(RendererTest));
101+
platformNativeScriptDynamic().bootstrapModule(makeExampleModule(RendererTest));
102102
//platformNativeScriptDynamic().bootstrapModule(makeExampleModule(TabViewTest));
103103
//platformNativeScriptDynamic().bootstrapModule(makeExampleModule(Benchmark));
104104
//platformNativeScriptDynamic().bootstrapModule(makeExampleModule(ListTest));
@@ -141,5 +141,5 @@ onAfterLivesync.subscribe((moduleRef) => {
141141
}
142142
});
143143

144-
platformNativeScriptDynamic().bootstrapModule(makeExampleModule(LivesyncApp));
144+
//platformNativeScriptDynamic().bootstrapModule(makeExampleModule(LivesyncApp));
145145
console.log("APP RESTART");

ng-sample/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@
2525
"dependencies": {
2626
"tns-core-modules": "2.2.1",
2727
"nativescript-angular": "file:../nativescript-angular",
28-
"nativescript-intl": "^0.0.2",
29-
"@angular/core": "2.0.0-rc.7",
30-
"@angular/common": "2.0.0-rc.7",
31-
"@angular/compiler": "2.0.0-rc.7",
32-
"@angular/http": "2.0.0-rc.7",
33-
"@angular/platform-browser": "2.0.0-rc.7",
34-
"@angular/platform-browser-dynamic": "2.0.0-rc.7",
35-
"@angular/platform-server": "2.0.0-rc.7",
36-
"@angular/router": "3.0.0-rc.3",
28+
"nativescript-intl": "^0.0.4",
29+
"@angular/core": "2.0.0",
30+
"@angular/common": "2.0.0",
31+
"@angular/compiler": "2.0.0",
32+
"@angular/http": "2.0.0",
33+
"@angular/platform-browser": "2.0.0",
34+
"@angular/platform-browser-dynamic": "2.0.0",
35+
"@angular/platform-server": "2.0.0",
36+
"@angular/router": "3.0.0",
3737
"rxjs": "5.0.0-beta.12",
3838
"reflect-metadata": "^0.1.8",
3939
"parse5": "1.3.2",

tests/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@
2626
"nativescript-unit-test-runner": "^0.3.3",
2727
"tns-core-modules": "2.2.1",
2828
"nativescript-angular": "file:../nativescript-angular",
29-
"@angular/core": "2.0.0-rc.7",
30-
"@angular/common": "2.0.0-rc.7",
31-
"@angular/compiler": "2.0.0-rc.7",
32-
"@angular/http": "2.0.0-rc.7",
33-
"@angular/platform-browser": "2.0.0-rc.7",
34-
"@angular/platform-browser-dynamic": "2.0.0-rc.7",
35-
"@angular/platform-server": "2.0.0-rc.7",
36-
"@angular/router": "3.0.0-rc.3",
29+
"@angular/core": "2.0.0",
30+
"@angular/common": "2.0.0",
31+
"@angular/compiler": "2.0.0",
32+
"@angular/http": "2.0.0",
33+
"@angular/platform-browser": "2.0.0",
34+
"@angular/platform-browser-dynamic": "2.0.0",
35+
"@angular/platform-server": "2.0.0",
36+
"@angular/router": "3.0.0",
3737
"rxjs": "5.0.0-beta.12",
3838
"reflect-metadata": "^0.1.8",
3939
"parse5": "1.3.2",
@@ -57,7 +57,7 @@
5757
"karma-nativescript-launcher": "^0.4.0",
5858
"lazy": "1.0.11",
5959
"mocha": "^2.4.5",
60-
"nativescript-dev-appium": "^0.0.12",
60+
"nativescript-dev-appium": "^0.0.13",
6161
"nativescript-dev-typescript": "^0.3.1",
6262
"typescript": "^1.8.10",
6363
"wd": "0.4.0"

0 commit comments

Comments
 (0)