Skip to content

Commit e6d09db

Browse files
author
Alexander Vakrilov
authored
Merge branch 'master' into hmr-bootstrap
2 parents b35fa39 + d9bebc5 commit e6d09db

File tree

6 files changed

+63
-35
lines changed

6 files changed

+63
-35
lines changed

Diff for: .github/ISSUE_TEMPLATE.md

-26
This file was deleted.

Diff for: .github/ISSUE_TEMPLATE/bug_report.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
name: Bug report
3+
about: 'We really appreciate your effort to provide feedback. Before opening a new
4+
issue, please make sure that this case is not already reported in GitHub as an
5+
issue or in StackOverflow as a question.'
6+
7+
---
8+
9+
**Environment**
10+
Provide version numbers for the following components (information can be retrieved by running `tns info` in your project folder or by inspecting the `package.json` of the project):
11+
- CLI:
12+
- Cross-platform modules:
13+
- Android Runtime:
14+
- iOS Runtime:
15+
- Plugin(s):
16+
- NativeScript-Angular:
17+
- Angular:
18+
19+
**Describe the bug**
20+
<!-- A clear and concise description of what the bug is. Please, explain whether it's a build time error or a runtime error. More detailed logs can be easily obtained by following the instructions in this guide: https://docs.nativescript.org/get-support#how-to-obtain-diagnostic-reports. -->
21+
22+
**To Reproduce**
23+
<!-- Add commands used or steps taken to reproduce the behaviour. -->
24+
25+
**Expected behavior**
26+
27+
**Sample project**
28+
<!-- If possible, provide a link from the [Playground](https://play.nativescript.org) with reproduction of the problem. If not, consider attaching a sample project or link to a repository with such project. -->
29+
30+
**Additional context**
31+
<!-- Add any other context about the problem here. -->

Diff for: .github/ISSUE_TEMPLATE/feature_request.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
5+
---
6+
7+
**Is your feature request related to a problem? Please describe.**
8+
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]. -->
9+
10+
**Describe the solution you'd like**
11+
<!-- A clear and concise description of what you want to happen. -->
12+
13+
**Describe alternatives you've considered**
14+
<!-- A clear and concise description of any alternative solutions or features you've considered. -->
15+
16+
**Additional context**
17+
<!-- Add any other context or screenshots about the feature request here. -->

Diff for: .travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@ env:
22
global:
33
- NODE_VERSION=8
44
- EMULATOR_API_LEVEL=23
5-
- ANDROID_VERSION=25
6-
- ANDROID_BUILD_TOOLS_VERSION=27.0.3
5+
- ANDROID_VERSION=28
6+
- ANDROID_BUILD_TOOLS_VERSION=28.0.2
77
- ANDROID_ABI=armeabi-v7a
8-
- APPIUM_VERSION=1.7.0
98
- EMULATOR_NAME=test
109
- ANDROID_TAG=google_apis
1110

@@ -66,6 +65,7 @@ android:
6665
components:
6766
- tools
6867
- platform-tools
68+
- android-$ANDROID_VERSION
6969
- build-tools-$ANDROID_BUILD_TOOLS_VERSION
7070
- android-$EMULATOR_API_LEVEL
7171
- extra-google-google_play_services

Diff for: e2e/modal-navigation-ng/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
"zone.js": "~0.8.2"
3131
},
3232
"devDependencies": {
33-
"@ngtools/webpack": "~6.1.0",
3433
"@angular/compiler-cli": "~6.1.0",
34+
"@ngtools/webpack": "~6.1.0",
3535
"@types/chai": "^4.0.2",
3636
"@types/mocha": "^2.2.41",
3737
"@types/node": "^7.0.5",
@@ -43,6 +43,9 @@
4343
"css-loader": "~0.28.11",
4444
"extract-text-webpack-plugin": "~3.0.2",
4545
"lazy": "1.0.11",
46+
"mocha": "^5.2.0",
47+
"mocha-junit-reporter": "~1.17.0",
48+
"mocha-multi": "~1.0.0",
4649
"nativescript-dev-appium": "next",
4750
"nativescript-dev-typescript": "next",
4851
"nativescript-dev-webpack": "^0.13.0",

Diff for: e2e/router-tab-view/package.json

+8-5
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,19 @@
3030
"zone.js": "~0.8.2"
3131
},
3232
"devDependencies": {
33+
"@types/chai": "^4.0.2",
34+
"@types/mocha": "^2.2.41",
35+
"@types/node": "^7.0.5",
3336
"babel-traverse": "6.26.0",
3437
"babel-types": "6.26.0",
3538
"babylon": "6.18.0",
3639
"lazy": "1.0.11",
37-
"nativescript-dev-appium": "^3.1.0",
40+
"mocha": "~5.1.0",
41+
"mocha-junit-reporter": "~1.17.0",
42+
"mocha-multi": "~1.0.0",
43+
"nativescript-dev-appium": "next",
3844
"nativescript-dev-typescript": "~0.6.0",
39-
"typescript": "~2.7.2",
40-
"@types/chai": "^4.0.2",
41-
"@types/mocha": "^2.2.41",
42-
"@types/node": "^7.0.5"
45+
"typescript": "~2.7.2"
4346
},
4447
"scripts": {
4548
"e2e": "tsc -p e2e && mocha --opts ../config/mocha.opts --recursive e2e --appiumCapsLocation ../config/appium.capabilities.json",

0 commit comments

Comments
 (0)