askui 0.20.5 → 0.20.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -239,7 +239,7 @@ class CreateExampleProject {
239
239
  }
240
240
  copyGitignore() {
241
241
  return __awaiter(this, void 0, void 0, function* () {
242
- const gitignoreFilePath = path_1.default.join('example_projects_templates', 'typescript', '.gitignore');
242
+ const gitignoreFilePath = path_1.default.join('example_projects_templates', 'typescript', 'gitignore');
243
243
  return [{
244
244
  title: 'Copy .gitignore',
245
245
  task: () => __awaiter(this, void 0, void 0, function* () {
@@ -233,7 +233,7 @@ export class CreateExampleProject {
233
233
  }
234
234
  copyGitignore() {
235
235
  return __awaiter(this, void 0, void 0, function* () {
236
- const gitignoreFilePath = path.join('example_projects_templates', 'typescript', '.gitignore');
236
+ const gitignoreFilePath = path.join('example_projects_templates', 'typescript', 'gitignore');
237
237
  return [{
238
238
  title: 'Copy .gitignore',
239
239
  task: () => __awaiter(this, void 0, void 0, function* () {
@@ -0,0 +1,24 @@
1
+ allure-results/
2
+ report/
3
+ xray-report/
4
+
5
+ .env
6
+ .vscode
7
+
8
+ # Dangerous (may contain secrets)
9
+ .npmrc
10
+
11
+ # Dependencies
12
+ /node_modules
13
+
14
+ # Caches
15
+ .npm
16
+ .eslintcache
17
+
18
+ # Misc
19
+ .DS_Store
20
+
21
+ # Logs
22
+ npm-debug.log*
23
+ yarn-debug.log*
24
+ yarn-error.log*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "askui",
3
- "version": "0.20.5",
3
+ "version": "0.20.6",
4
4
  "license": "MIT",
5
5
  "author": "askui GmbH <info@askui.com> (http://www.askui.com/)",
6
6
  "description": "Reliable, automated end-to-end-testing that depends on what is shown on your screen instead of the technology you are running on",