@nx/playwright 19.2.0-canary.20240601-6f22300 → 19.2.0-canary.20240605-5a06daa
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 +4 -4
- package/src/plugins/plugin.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/playwright",
|
|
3
|
-
"version": "19.2.0-canary.
|
|
3
|
+
"version": "19.2.0-canary.20240605-5a06daa",
|
|
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.
|
|
39
|
-
"@nx/eslint": "19.2.0-canary.
|
|
40
|
-
"@nx/js": "19.2.0-canary.
|
|
38
|
+
"@nx/devkit": "19.2.0-canary.20240605-5a06daa",
|
|
39
|
+
"@nx/eslint": "19.2.0-canary.20240605-5a06daa",
|
|
40
|
+
"@nx/js": "19.2.0-canary.20240605-5a06daa",
|
|
41
41
|
"tslib": "^2.3.0",
|
|
42
42
|
"minimatch": "9.0.3"
|
|
43
43
|
},
|
package/src/plugins/plugin.js
CHANGED
|
@@ -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.
|
|
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);
|