nx 19.3.0-canary.20240611-1600875 → 19.3.0-canary.20240612-4a5eb23

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",
3
- "version": "19.3.0-canary.20240611-1600875",
3
+ "version": "19.3.0-canary.20240612-4a5eb23",
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": {
@@ -70,7 +70,7 @@
70
70
  "yargs-parser": "21.1.1",
71
71
  "node-machine-id": "1.1.12",
72
72
  "ora": "5.3.0",
73
- "@nrwl/tao": "19.3.0-canary.20240611-1600875"
73
+ "@nrwl/tao": "19.3.0-canary.20240612-4a5eb23"
74
74
  },
75
75
  "peerDependencies": {
76
76
  "@swc-node/register": "^1.8.0",
@@ -85,16 +85,16 @@
85
85
  }
86
86
  },
87
87
  "optionalDependencies": {
88
- "@nx/nx-darwin-x64": "19.3.0-canary.20240611-1600875",
89
- "@nx/nx-darwin-arm64": "19.3.0-canary.20240611-1600875",
90
- "@nx/nx-linux-x64-gnu": "19.3.0-canary.20240611-1600875",
91
- "@nx/nx-linux-x64-musl": "19.3.0-canary.20240611-1600875",
92
- "@nx/nx-win32-x64-msvc": "19.3.0-canary.20240611-1600875",
93
- "@nx/nx-linux-arm64-gnu": "19.3.0-canary.20240611-1600875",
94
- "@nx/nx-linux-arm64-musl": "19.3.0-canary.20240611-1600875",
95
- "@nx/nx-linux-arm-gnueabihf": "19.3.0-canary.20240611-1600875",
96
- "@nx/nx-win32-arm64-msvc": "19.3.0-canary.20240611-1600875",
97
- "@nx/nx-freebsd-x64": "19.3.0-canary.20240611-1600875"
88
+ "@nx/nx-darwin-x64": "19.3.0-canary.20240612-4a5eb23",
89
+ "@nx/nx-darwin-arm64": "19.3.0-canary.20240612-4a5eb23",
90
+ "@nx/nx-linux-x64-gnu": "19.3.0-canary.20240612-4a5eb23",
91
+ "@nx/nx-linux-x64-musl": "19.3.0-canary.20240612-4a5eb23",
92
+ "@nx/nx-win32-x64-msvc": "19.3.0-canary.20240612-4a5eb23",
93
+ "@nx/nx-linux-arm64-gnu": "19.3.0-canary.20240612-4a5eb23",
94
+ "@nx/nx-linux-arm64-musl": "19.3.0-canary.20240612-4a5eb23",
95
+ "@nx/nx-linux-arm-gnueabihf": "19.3.0-canary.20240612-4a5eb23",
96
+ "@nx/nx-win32-arm64-msvc": "19.3.0-canary.20240612-4a5eb23",
97
+ "@nx/nx-freebsd-x64": "19.3.0-canary.20240612-4a5eb23"
98
98
  },
99
99
  "nx-migrations": {
100
100
  "migrations": "./migrations.json",
@@ -46,6 +46,9 @@ function createPackageJson(projectName, graph, options = {}, fileMap = null) {
46
46
  delete packageJson.dependencies;
47
47
  delete packageJson.devDependencies;
48
48
  }
49
+ if (options.isProduction) {
50
+ delete packageJson.devDependencies;
51
+ }
49
52
  }
50
53
  catch (e) { }
51
54
  }