Skip to content

Commit 98baaff

Browse files
author
Zdravko
authored
Merge pull request #196 from NativeScript/zbranzov/bump-4.4.1
chore: bump version to 4.4.1 and add needed references when using npm…
2 parents 1139cf4 + d22ac05 commit 98baaff

File tree

9 files changed

+30
-22
lines changed

9 files changed

+30
-22
lines changed

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,7 @@ demo*/report/stats.json
2727
/src/*.tgz
2828
*.esm.json
2929
*.tns.json
30-
!demo-vue/app/app.js
30+
!demo-vue/app/app.js
31+
test-results.xml
32+
mochawesome-report/
33+
/**/e2e/reports/

demo-angular/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
"nativescript-css-loader": "~0.26.0",
4040
"nativescript-dev-typescript": "~0.9.0",
4141
"nativescript-dev-webpack": "~0.21.0",
42+
"tns-platform-declarations": "^5.3.2",
4243
"tslint": "~5.11.0"
4344
}
4445
}

demo-angular/references.d.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
/// <reference path="./node_modules/tns-core-modules/tns-core-modules.d.ts" /> Needed for autocompletion and compilation.
1+
// Needed for autocompletion and compilation.
2+
/// <reference path="./node_modules/tns-core-modules/tns-core-modules.d.ts" />
3+
// If the plugin is referenced from npm,
4+
// the native typings should be referenced
5+
// from the following locations:
6+
// / <reference path="./node_modules/tns-platform-declarations/ios.d.ts" />
7+
// / <reference path="./node_modules/tns-platform-declarations/android.d.ts" />

demo-vue/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"mocha-junit-reporter": "^1.18.0",
3030
"mocha-multi": "^1.0.1",
3131
"mochawesome": "^3.1.1",
32-
"nativescript-dev-appium": "4.0.9",
32+
"nativescript-dev-appium": "5.2.0",
3333
"nativescript-dev-typescript": "~0.9.0",
3434
"nativescript-dev-webpack": "~0.21.0",
3535
"nativescript-vue-template-compiler": "^2.0.0",

demo-vue/test-results.xml

-9
This file was deleted.

demo/e2e/config/appium.capabilities.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
"platformVersion": "7.0",
4343
"deviceName": "Android GoogleAPI Emulator",
4444
"lt": 60000,
45+
"appActivity": "com.tns.NativeScriptActivity",
4546
"newCommandTimeout": 720,
46-
"appiumVersion": "1.7.1",
4747
"noReset": true,
4848
"fullReset": false,
4949
"app": ""
@@ -89,12 +89,12 @@
8989
"app": ""
9090
},
9191
"sim103iPhone6": {
92-
"browserName": "",
93-
"appiumVersion": "1.7.1",
94-
"platformName": "iOS",
95-
"platformVersion": "10.3",
96-
"deviceName": "iPhone 6",
97-
"app": ""
92+
"browserName": "",
93+
"appiumVersion": "1.7.1",
94+
"platformName": "iOS",
95+
"platformVersion": "10.3",
96+
"deviceName": "iPhone 6",
97+
"app": ""
9898
},
9999
"sim.iPhone8.iOS110": {
100100
"platformName": "iOS",

demo/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,10 @@
3434
"mocha-multi": "^1.0.1",
3535
"mochawesome": "^3.1.1",
3636
"nativescript-css-loader": "~0.26.1",
37-
"nativescript-dev-appium": "4.0.9",
37+
"nativescript-dev-appium": "5.2.0",
3838
"nativescript-dev-typescript": "~0.9.0",
3939
"nativescript-dev-webpack": "~0.21.0",
40+
"tns-platform-declarations": "^5.3.2",
4041
"tslint": "~5.11.0"
4142
}
4243
}

demo/references.d.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
/// <reference path="./node_modules/tns-core-modules/tns-core-modules.d.ts" /> Needed for autocompletion and compilation.
1+
// Needed for autocompletion and compilation.
2+
/// <reference path="./node_modules/tns-core-modules/tns-core-modules.d.ts" />
3+
// If the plugin is referenced from npm,
4+
// the native typings should be referenced
5+
// from the following locations:
6+
// / <reference path="./node_modules/tns-platform-declarations/ios.d.ts" />
7+
// / <reference path="./node_modules/tns-platform-declarations/android.d.ts" />

src/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nativescript-camera",
3-
"version": "4.4.0",
3+
"version": "4.4.1",
44
"description": "Provides API for using device camera",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)