@nx/playwright 19.2.0-canary.20240604-0594deb → 19.2.0-rc.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/playwright",
3
- "version": "19.2.0-canary.20240604-0594deb",
3
+ "version": "19.2.0-rc.0",
4
4
  "type": "commonjs",
5
5
  "homepage": "https://nx.dev",
6
6
  "private": false,
@@ -35,9 +35,9 @@
35
35
  },
36
36
  "dependencies": {
37
37
  "@phenomnomnominal/tsquery": "~5.0.1",
38
- "@nx/devkit": "19.2.0-canary.20240604-0594deb",
39
- "@nx/eslint": "19.2.0-canary.20240604-0594deb",
40
- "@nx/js": "19.2.0-canary.20240604-0594deb",
38
+ "@nx/devkit": "19.2.0-rc.0",
39
+ "@nx/eslint": "19.2.0-rc.0",
40
+ "@nx/js": "19.2.0-rc.0",
41
41
  "tslib": "^2.3.0",
42
42
  "minimatch": "9.0.3"
43
43
  },
@@ -23,7 +23,7 @@ exports.createNodesV2 = [
23
23
  playwrightConfigGlob,
24
24
  async (configFilePaths, options, context) => {
25
25
  const optionsHash = (0, file_hasher_1.hashObject)(options);
26
- const cachePath = (0, path_1.join)(cache_directory_1.projectGraphCacheDirectory, `playwright-${optionsHash}.hash`);
26
+ const cachePath = (0, path_1.join)(cache_directory_1.workspaceDataDirectory, `playwright-${optionsHash}.hash`);
27
27
  const targetsCache = readTargetsCache(cachePath);
28
28
  try {
29
29
  return await (0, devkit_1.createNodesFromFiles)((configFile, options, context) => createNodesInternal(configFile, options, context, targetsCache), configFilePaths, options, context);