Skip to content

Commit 149b980

Browse files
committed
chor: update demo apps for NativeScript 4.2.0
also remove unneeded authors from src/package.json
1 parent a2c14a4 commit 149b980

File tree

3 files changed

+24
-49
lines changed

3 files changed

+24
-49
lines changed

demo-angular/package.json

Lines changed: 16 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -4,44 +4,39 @@
44
"nativescript": {
55
"id": "org.nativescript.demoangular",
66
"tns-ios": {
7-
"version": "4.1.0"
7+
"version": "4.2.0"
88
},
99
"tns-android": {
10-
"version": "4.1.1"
10+
"version": "4.2.0"
1111
}
1212
},
1313
"dependencies": {
14-
"@angular/common": "~6.0.6",
15-
"@angular/compiler": "~6.0.6",
16-
"@angular/core": "~6.0.6",
17-
"@angular/forms": "~6.0.6",
18-
"@angular/http": "~6.0.6",
19-
"@angular/platform-browser": "~6.0.6",
20-
"@angular/platform-browser-dynamic": "~6.0.6",
21-
"@angular/router": "~6.0.6",
22-
"nativescript-angular": "~6.0.6",
14+
"@angular/common": "~6.1.0",
15+
"@angular/compiler": "~6.1.0",
16+
"@angular/core": "~6.1.0",
17+
"@angular/forms": "~6.1.0",
18+
"@angular/http": "~6.1.0",
19+
"@angular/platform-browser": "~6.1.0",
20+
"@angular/platform-browser-dynamic": "~6.1.0",
21+
"@angular/router": "~6.1.0",
22+
"nativescript-angular": "~6.1.0",
2323
"nativescript-facebook": "../src",
2424
"nativescript-theme-core": "^1.0.4",
2525
"nativescript-unit-test-runner": "^0.3.4",
2626
"rxjs": "~6.1.0",
27-
"tns-core-modules": "4.1.0",
27+
"tns-core-modules": "^4.2.0",
2828
"zone.js": "^0.8.4"
2929
},
3030
"devDependencies": {
31-
"babel-traverse": "6.26.0",
32-
"babel-types": "6.26.0",
33-
"babylon": "6.18.0",
34-
"filewalker": "0.1.2",
3531
"jasmine-core": "^2.5.2",
3632
"karma": "^1.3.0",
3733
"karma-jasmine": "^1.0.2",
3834
"karma-nativescript-launcher": "^0.4.0",
39-
"lazy": "1.0.11",
4035
"nativescript-css-loader": "~0.26.0",
41-
"nativescript-dev-typescript": "^0.7.1",
42-
"nativescript-dev-webpack": "~0.14.0",
43-
"tslint": "~5.4.3",
44-
"typescript": "~2.7.2"
36+
"nativescript-dev-typescript": "~0.7.2",
37+
"nativescript-dev-webpack": "~0.15.1",
38+
"tslint": "~5.11.0",
39+
"typescript": "~2.8.2"
4540
},
4641
"scripts": {
4742
"build.plugin": "cd ../src && npm run build",

demo/package.json

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,37 +2,32 @@
22
"nativescript": {
33
"id": "org.nativescript.demo",
44
"tns-android": {
5-
"version": "4.1.1"
5+
"version": "4.2.0"
66
},
77
"tns-ios": {
8-
"version": "4.1.0"
8+
"version": "4.2.0"
99
}
1010
},
1111
"dependencies": {
1212
"nativescript-facebook": "../src",
1313
"nativescript-theme-core": "^1.0.4",
1414
"nativescript-unit-test-runner": "^0.3.4",
15-
"tns-core-modules": "4.1.0"
15+
"tns-core-modules": "^4.2.0"
1616
},
1717
"devDependencies": {
18-
"babel-traverse": "6.26.0",
19-
"babel-types": "6.26.0",
20-
"babylon": "6.18.0",
2118
"chai": "~4.1.2",
2219
"chai-as-promised": "~7.1.1",
23-
"filewalker": "~0.1.3",
2420
"jasmine-core": "^3.1.0",
2521
"karma": "^2.0.2",
2622
"karma-jasmine": "^1.1.2",
2723
"karma-nativescript-launcher": "^0.4.0",
28-
"lazy": "1.0.11",
2924
"mocha": "~5.2.0",
3025
"nativescript-css-loader": "~0.26.1",
3126
"nativescript-dev-appium": "3.2.0",
32-
"nativescript-dev-typescript": "^0.7.1",
33-
"nativescript-dev-webpack": "~0.14.0",
34-
"tslint": "~5.4.3",
35-
"typescript": "~2.7.2",
27+
"nativescript-dev-typescript": "~0.7.2",
28+
"nativescript-dev-webpack": "~0.15.1",
29+
"tslint": "~5.11.0",
30+
"typescript": "~2.8.2",
3631
"wd": "~1.7.0",
3732
"@types/chai": "^4.1.3",
3833
"@types/mocha": "^5.2.0",

src/package.json

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"build.iosOnly": "npm i && tsc && npm run ngc",
1616
"ci.tslint": "npm i && tslint '**/*.ts' --config '../tslint.json' --exclude '**/node_modules/**'",
1717
"prepublishOnly": "npm run build",
18-
"plugin.link": "npm link && cd ../demo-angular && npm link nativescript-camera",
1918
"plugin.tscwatch": "tsc -skipLibCheck -w",
2019
"demo.ios": "npm i && npm run tsc && cd ../demo && tns run ios --syncAllFiles",
2120
"demo.android": "npm i && npm run tsc && cd ../demo && tns run android --syncAllFiles",
@@ -33,21 +32,7 @@
3332
"iOS",
3433
"Facebook"
3534
],
36-
"author": {
37-
"name": "NativeScript Team",
38-
"email": "support@telerik.com",
39-
"url": "http://www.telerik.com"
40-
},
41-
"maintainers": [
42-
{
43-
"name": "angeltsvetkov",
44-
"email": "angel.tsvetkov@progress.com"
45-
},
46-
{
47-
"name": "Dimitar Tachev",
48-
"email": "dimitar.tachev@progress.com"
49-
}
50-
],
35+
"author": "NativeScript Team",
5136
"bugs": {
5237
"url": "https://github.com/NativeScript/nativescript-facebook/issues"
5338
},

0 commit comments

Comments
 (0)