@wdio/config 8.7.0 → 8.8.0

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.
@@ -1 +1 @@
1
- {"version":3,"file":"FileSystemPathService.d.ts","sourceRoot":"","sources":["../../src/lib/FileSystemPathService.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,WAAW,EAAuB,MAAM,aAAa,CAAA;AAEnE,MAAM,CAAC,OAAO,OAAO,qBAAsB,YAAW,WAAW;;IAG7D,QAAQ,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC;IAOrC,MAAM,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO;IAIjC;;;;;OAKG;IACH,IAAI,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE;IAmBhD,kBAAkB,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM;CAUhE"}
1
+ {"version":3,"file":"FileSystemPathService.d.ts","sourceRoot":"","sources":["../../src/lib/FileSystemPathService.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,WAAW,EAAuB,MAAM,aAAa,CAAA;AAEnE,MAAM,CAAC,OAAO,OAAO,qBAAsB,YAAW,WAAW;;IAG7D,QAAQ,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC;IAOrC,MAAM,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO;IAIjC;;;;;OAKG;IACH,IAAI,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE;IAoBhD,kBAAkB,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM;CAUhE"}
@@ -30,13 +30,13 @@ export default class FileSystemPathService {
30
30
  * and we also want to be able to find files with these characters included
31
31
  * we add an additional check to see if the file as pattern exists.
32
32
  * add file to globResult only if filename doesn't include pattern(*)
33
- * and globResult doest contain the fileName
33
+ * and globResult doesn't contain the fileName
34
34
  * and file should be available
35
35
  */
36
36
  if (!pattern.includes('*') && !globResult.includes(pattern) && !globResult.includes(fileName) && fs.existsSync(fileName)) {
37
37
  globResult.push(fileName);
38
38
  }
39
- return globResult;
39
+ return globResult.sort();
40
40
  }
41
41
  ensureAbsolutePath(filepath, rootDir) {
42
42
  if (filepath.startsWith('file://')) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/config",
3
- "version": "8.7.0",
3
+ "version": "8.8.0",
4
4
  "description": "A helper utility to parse and validate WebdriverIO options",
5
5
  "author": "Christian Bromann <mail@bromann.dev>",
6
6
  "homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-config",
@@ -30,8 +30,8 @@
30
30
  },
31
31
  "dependencies": {
32
32
  "@wdio/logger": "8.6.6",
33
- "@wdio/types": "8.7.0",
34
- "@wdio/utils": "8.7.0",
33
+ "@wdio/types": "8.8.0",
34
+ "@wdio/utils": "8.8.0",
35
35
  "decamelize": "^6.0.0",
36
36
  "deepmerge-ts": "^5.0.0",
37
37
  "glob": "^9.3.0",
@@ -42,8 +42,8 @@
42
42
  "access": "public"
43
43
  },
44
44
  "devDependencies": {
45
- "minimatch": "^8.0.2",
45
+ "minimatch": "^9.0.0",
46
46
  "tsconfig-paths": "^4.1.0"
47
47
  },
48
- "gitHead": "2615d963dc561aed0920c519ed5c27720e1a636c"
48
+ "gitHead": "5089710e47a4bf14dac948302ac12edd71a83331"
49
49
  }