Skip to content

Commit c6c5825

Browse files
authored
Merge branch 'master' into iiivanov/stop-attach-on-error
2 parents 593bafb + 55fb035 commit c6c5825

File tree

3 files changed

+55
-8
lines changed

3 files changed

+55
-8
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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+
- VSCode:
17+
18+
**Describe the bug**
19+
<!-- 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. -->
20+
21+
**To Reproduce**
22+
<!-- Add commands used or steps taken to reproduce the behaviour. -->
23+
24+
**Expected behavior**
25+
26+
**Sample project**
27+
<!-- 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. -->
28+
29+
**Additional context**
30+
<!-- Add any other context about the problem here. -->
Lines changed: 17 additions & 0 deletions
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. -->

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
"sourceMaps": true,
143143
"watch": true,
144144
"sourceMapPathOverrides": {
145-
"webpack:///*": "${workspaceRoot}/app/*"
145+
"webpack:///*": "${workspaceRoot}/src/*"
146146
}
147147
},
148148
{
@@ -154,7 +154,7 @@
154154
"sourceMaps": true,
155155
"watch": false,
156156
"sourceMapPathOverrides": {
157-
"webpack:///*": "${workspaceRoot}/app/*"
157+
"webpack:///*": "${workspaceRoot}/src/*"
158158
}
159159
},
160160
{
@@ -166,7 +166,7 @@
166166
"sourceMaps": true,
167167
"watch": true,
168168
"sourceMapPathOverrides": {
169-
"webpack:///*": "${workspaceRoot}/app/*"
169+
"webpack:///*": "${workspaceRoot}/src/*"
170170
}
171171
},
172172
{
@@ -178,7 +178,7 @@
178178
"sourceMaps": true,
179179
"watch": false,
180180
"sourceMapPathOverrides": {
181-
"webpack:///*": "${workspaceRoot}/app/*"
181+
"webpack:///*": "${workspaceRoot}/src/*"
182182
}
183183
}
184184
],
@@ -195,7 +195,7 @@
195195
"sourceMaps": true,
196196
"watch": true,
197197
"sourceMapPathOverrides": {
198-
"webpack:///*": "${workspaceRoot}/app/*"
198+
"webpack:///*": "${workspaceRoot}/src/*"
199199
}
200200
}
201201
},
@@ -211,7 +211,7 @@
211211
"sourceMaps": true,
212212
"watch": true,
213213
"sourceMapPathOverrides": {
214-
"webpack:///*": "${workspaceRoot}/app/*"
214+
"webpack:///*": "${workspaceRoot}/src/*"
215215
}
216216
}
217217
},
@@ -227,7 +227,7 @@
227227
"sourceMaps": true,
228228
"watch": false,
229229
"sourceMapPathOverrides": {
230-
"webpack:///*": "${workspaceRoot}/app/*"
230+
"webpack:///*": "${workspaceRoot}/src/*"
231231
}
232232
}
233233
},
@@ -243,7 +243,7 @@
243243
"sourceMaps": true,
244244
"watch": false,
245245
"sourceMapPathOverrides": {
246-
"webpack:///*": "${workspaceRoot}/app/*"
246+
"webpack:///*": "${workspaceRoot}/src/*"
247247
}
248248
}
249249
}

0 commit comments

Comments
 (0)