@wdio/config 8.15.4 → 8.15.7

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.
@@ -370,7 +370,7 @@ export default class ConfigParser {
370
370
  if (filenames.length === 0) {
371
371
  log.warn('pattern', pattern, 'did not match any file');
372
372
  }
373
- files = [...files, ...filenames];
373
+ files = [...files, ...new Set(filenames)];
374
374
  }
375
375
  }
376
376
  return files;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/config",
3
- "version": "8.15.4",
3
+ "version": "8.15.7",
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.11.0",
33
- "@wdio/types": "8.15.0",
34
- "@wdio/utils": "8.15.4",
33
+ "@wdio/types": "8.15.7",
34
+ "@wdio/utils": "8.15.7",
35
35
  "decamelize": "^6.0.0",
36
36
  "deepmerge-ts": "^5.0.0",
37
37
  "glob": "^10.2.2",
@@ -45,5 +45,5 @@
45
45
  "minimatch": "^9.0.0",
46
46
  "tsconfig-paths": "^4.1.0"
47
47
  },
48
- "gitHead": "528fe3a1d3d37a44f58882a65170971f38461add"
48
+ "gitHead": "24d8f0dccf54e6e19779094d73eb90ae9086ee86"
49
49
  }