@nx/playwright 17.3.0-canary.20240118-8ccf327 → 17.3.0-canary.20240120-06717de
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 +5 -5
- package/src/plugins/plugin.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/playwright",
|
|
3
|
-
"version": "17.3.0-canary.
|
|
3
|
+
"version": "17.3.0-canary.20240120-06717de",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"homepage": "https://nx.dev",
|
|
6
6
|
"private": false,
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"directory": "packages/playwright"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@nx/devkit": "17.3.0-canary.
|
|
36
|
-
"@nx/eslint": "17.3.0-canary.
|
|
37
|
-
"@nx/js": "17.3.0-canary.
|
|
35
|
+
"@nx/devkit": "17.3.0-canary.20240120-06717de",
|
|
36
|
+
"@nx/eslint": "17.3.0-canary.20240120-06717de",
|
|
37
|
+
"@nx/js": "17.3.0-canary.20240120-06717de",
|
|
38
38
|
"tslib": "^2.3.0",
|
|
39
|
-
"minimatch": "
|
|
39
|
+
"minimatch": "9.0.3"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"@playwright/test": "^1.36.0"
|
package/src/plugins/plugin.js
CHANGED
|
@@ -7,7 +7,7 @@ const devkit_1 = require("@nx/devkit");
|
|
|
7
7
|
const get_named_inputs_1 = require("@nx/devkit/src/utils/get-named-inputs");
|
|
8
8
|
const calculate_hash_for_create_nodes_1 = require("@nx/devkit/src/utils/calculate-hash-for-create-nodes");
|
|
9
9
|
const workspace_context_1 = require("nx/src/utils/workspace-context");
|
|
10
|
-
const
|
|
10
|
+
const minimatch_1 = require("minimatch");
|
|
11
11
|
const load_config_file_1 = require("../utils/load-config-file");
|
|
12
12
|
const cache_directory_1 = require("nx/src/utils/cache-directory");
|
|
13
13
|
const js_1 = require("@nx/js");
|
|
@@ -136,7 +136,7 @@ function createMatcher(pattern) {
|
|
|
136
136
|
else {
|
|
137
137
|
return (path) => {
|
|
138
138
|
try {
|
|
139
|
-
return minimatch(path, pattern);
|
|
139
|
+
return (0, minimatch_1.minimatch)(path, pattern);
|
|
140
140
|
}
|
|
141
141
|
catch (e) {
|
|
142
142
|
throw new Error(`Error matching ${path} with ${pattern}: ${e.message}`);
|