nx 19.0.0-beta.2 โ†’ 19.0.0-beta.3

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",
3
- "version": "19.0.0-beta.2",
3
+ "version": "19.0.0-beta.3",
4
4
  "private": false,
5
5
  "description": "The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.",
6
6
  "repository": {
@@ -66,7 +66,7 @@
66
66
  "yargs-parser": "21.1.1",
67
67
  "node-machine-id": "1.1.12",
68
68
  "ora": "5.3.0",
69
- "@nrwl/tao": "19.0.0-beta.2"
69
+ "@nrwl/tao": "19.0.0-beta.3"
70
70
  },
71
71
  "peerDependencies": {
72
72
  "@swc-node/register": "^1.8.0",
@@ -81,16 +81,16 @@
81
81
  }
82
82
  },
83
83
  "optionalDependencies": {
84
- "@nx/nx-darwin-x64": "19.0.0-beta.2",
85
- "@nx/nx-darwin-arm64": "19.0.0-beta.2",
86
- "@nx/nx-linux-x64-gnu": "19.0.0-beta.2",
87
- "@nx/nx-linux-x64-musl": "19.0.0-beta.2",
88
- "@nx/nx-win32-x64-msvc": "19.0.0-beta.2",
89
- "@nx/nx-linux-arm64-gnu": "19.0.0-beta.2",
90
- "@nx/nx-linux-arm64-musl": "19.0.0-beta.2",
91
- "@nx/nx-linux-arm-gnueabihf": "19.0.0-beta.2",
92
- "@nx/nx-win32-arm64-msvc": "19.0.0-beta.2",
93
- "@nx/nx-freebsd-x64": "19.0.0-beta.2"
84
+ "@nx/nx-darwin-x64": "19.0.0-beta.3",
85
+ "@nx/nx-darwin-arm64": "19.0.0-beta.3",
86
+ "@nx/nx-linux-x64-gnu": "19.0.0-beta.3",
87
+ "@nx/nx-linux-x64-musl": "19.0.0-beta.3",
88
+ "@nx/nx-win32-x64-msvc": "19.0.0-beta.3",
89
+ "@nx/nx-linux-arm64-gnu": "19.0.0-beta.3",
90
+ "@nx/nx-linux-arm64-musl": "19.0.0-beta.3",
91
+ "@nx/nx-linux-arm-gnueabihf": "19.0.0-beta.3",
92
+ "@nx/nx-win32-arm64-msvc": "19.0.0-beta.3",
93
+ "@nx/nx-freebsd-x64": "19.0.0-beta.3"
94
94
  },
95
95
  "nx-migrations": {
96
96
  "migrations": "./migrations.json",
@@ -109,7 +109,7 @@ async function reorgnizeWorkspaceStructure(options) {
109
109
  }
110
110
  function createTempWorkspace(options) {
111
111
  (0, fs_extra_1.removeSync)('temp-workspace');
112
- (0, child_process_1.execSync)(`npx ${options.npxYesFlagNeeded ? '-y' : ''} create-nx-workspace@latest temp-workspace --appName=${options.reactAppName} --preset=react-monorepo --style=css --bundler=${options.isVite ? 'vite' : 'webpack'} --packageManager=${options.packageManager} ${options.nxCloud ? '--nxCloud=yes' : '--nxCloud=skip'} ${options.addE2e ? '--e2eTestRunner=cypress' : '--e2eTestRunner=none'}`, { stdio: [0, 1, 2] });
112
+ (0, child_process_1.execSync)(`npx ${options.npxYesFlagNeeded ? '-y' : ''} create-nx-workspace@latest temp-workspace --appName=${options.reactAppName} --preset=react-monorepo --style=css --bundler=${options.isVite ? 'vite' : 'webpack'} --packageManager=${options.packageManager} ${options.nxCloud ? '--nxCloud=yes' : '--nxCloud=skip'} ${options.addE2e ? '--e2eTestRunner=playwright' : '--e2eTestRunner=none'}`, { stdio: [0, 1, 2] });
113
113
  output_1.output.log({ title: '๐Ÿ‘‹ Welcome to Nx!' });
114
114
  output_1.output.log({ title: '๐Ÿงน Clearing unused files' });
115
115
  (0, fs_extra_1.copySync)((0, path_1.join)('temp-workspace', 'apps', options.reactAppName, 'project.json'), 'project.json');