@nx/playwright 20.4.3 → 20.4.4

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": "20.4.3",
3
+ "version": "20.4.4",
4
4
  "type": "commonjs",
5
5
  "homepage": "https://nx.dev",
6
6
  "private": false,
@@ -35,11 +35,9 @@
35
35
  },
36
36
  "dependencies": {
37
37
  "@phenomnomnominal/tsquery": "~5.0.1",
38
- "@nx/devkit": "20.4.3",
39
- "@nx/eslint": "20.4.3",
40
- "@nx/webpack": "20.4.3",
41
- "@nx/vite": "20.4.3",
42
- "@nx/js": "20.4.3",
38
+ "@nx/devkit": "20.4.4",
39
+ "@nx/eslint": "20.4.4",
40
+ "@nx/js": "20.4.4",
43
41
  "tslib": "^2.3.0",
44
42
  "minimatch": "9.0.3"
45
43
  },
@@ -7,8 +7,6 @@ const add_e2e_ci_target_defaults_1 = require("./add-e2e-ci-target-defaults");
7
7
  const loaded_nx_plugin_1 = require("nx/src/project-graph/plugins/loaded-nx-plugin");
8
8
  const retrieve_workspace_files_1 = require("nx/src/project-graph/utils/retrieve-workspace-files");
9
9
  const error_types_1 = require("nx/src/project-graph/error-types");
10
- const plugin_1 = require("@nx/webpack/src/plugins/plugin");
11
- const plugin_2 = require("@nx/vite/plugin");
12
10
  async function default_1(tree) {
13
11
  const graph = await (0, devkit_1.createProjectGraphAsync)();
14
12
  const collectedProjects = [];
@@ -86,8 +84,9 @@ async function default_1(tree) {
86
84
  : 'preview', projectToMigrate.configFileType === 'webpack'
87
85
  ? 'serveStaticTargetName'
88
86
  : 'previewTargetName', projectToMigrate.configFileType === 'webpack'
89
- ? plugin_1.createNodesV2
90
- : plugin_2.createNodesV2)) ??
87
+ ? require('@nx/webpack/plugin').createNodesV2
88
+ : require('@nx/vite/plugin')
89
+ .createNodesV2)) ??
91
90
  getServeStaticLikeTarget(tree, graph, projectToMigrate.projectName, projectToMigrate.configFileType === 'webpack'
92
91
  ? '@nx/web:file-server'
93
92
  : '@nx/vite:preview-server');