@nx/playwright 18.1.0-canary.20240207-6485e3c → 18.1.0-canary.20240209-3b21cef

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": "18.1.0-canary.20240207-6485e3c",
3
+ "version": "18.1.0-canary.20240209-3b21cef",
4
4
  "type": "commonjs",
5
5
  "homepage": "https://nx.dev",
6
6
  "private": false,
@@ -33,9 +33,9 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "@phenomnomnominal/tsquery": "~5.0.1",
36
- "@nx/devkit": "18.1.0-canary.20240207-6485e3c",
37
- "@nx/eslint": "18.1.0-canary.20240207-6485e3c",
38
- "@nx/js": "18.1.0-canary.20240207-6485e3c",
36
+ "@nx/devkit": "18.1.0-canary.20240209-3b21cef",
37
+ "@nx/eslint": "18.1.0-canary.20240209-3b21cef",
38
+ "@nx/js": "18.1.0-canary.20240209-3b21cef",
39
39
  "tslib": "^2.3.0",
40
40
  "minimatch": "9.0.3"
41
41
  },
@@ -90,7 +90,7 @@ async function buildPlaywrightTargets(configFilePath, projectRoot, options, cont
90
90
  playwrightConfig.testMatch ??= '**/*.@(spec|test).?(c|m)[jt]s?(x)';
91
91
  const dependsOn = [];
92
92
  forEachTestFile((testFile) => {
93
- const relativeToProjectRoot = (0, path_1.relative)(projectRoot, testFile);
93
+ const relativeToProjectRoot = (0, devkit_1.normalizePath)((0, path_1.relative)(projectRoot, testFile));
94
94
  const targetName = `${options.ciTargetName}--${relativeToProjectRoot}`;
95
95
  targets[targetName] = {
96
96
  ...ciBaseTargetConfig,