@nx/playwright 17.2.6 → 17.2.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/playwright",
3
- "version": "17.2.6",
3
+ "version": "17.2.7",
4
4
  "type": "commonjs",
5
5
  "homepage": "https://nx.dev",
6
6
  "private": false,
@@ -32,8 +32,8 @@
32
32
  "directory": "packages/playwright"
33
33
  },
34
34
  "dependencies": {
35
- "@nx/devkit": "17.2.6",
36
- "@nx/eslint": "17.2.6",
35
+ "@nx/devkit": "17.2.7",
36
+ "@nx/eslint": "17.2.7",
37
37
  "tslib": "^2.3.0"
38
38
  },
39
39
  "peerDependencies": {
@@ -43,7 +43,7 @@ function createArgs(opts, exclude = ['skipInstall']) {
43
43
  // NOTE: playwright doesn't accept pascalCase args, only kebab-case
44
44
  const arg = (0, devkit_1.names)(key).fileName;
45
45
  if (Array.isArray(value)) {
46
- args.push(`--${arg}=${value.map((v) => v.trim()).join(',')}`);
46
+ args.push(...value.map((v) => `--${arg}=${v.trim()}`));
47
47
  }
48
48
  else if (typeof value === 'boolean') {
49
49
  // NOTE: playwright don't accept --arg=false, instead just don't pass the arg.