nx 19.5.0 → 19.5.1

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.5.0",
3
+ "version": "19.5.1",
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": {
@@ -71,7 +71,7 @@
71
71
  "yargs-parser": "21.1.1",
72
72
  "node-machine-id": "1.1.12",
73
73
  "ora": "5.3.0",
74
- "@nrwl/tao": "19.5.0"
74
+ "@nrwl/tao": "19.5.1"
75
75
  },
76
76
  "peerDependencies": {
77
77
  "@swc-node/register": "^1.8.0",
@@ -86,16 +86,16 @@
86
86
  }
87
87
  },
88
88
  "optionalDependencies": {
89
- "@nx/nx-darwin-x64": "19.5.0",
90
- "@nx/nx-darwin-arm64": "19.5.0",
91
- "@nx/nx-linux-x64-gnu": "19.5.0",
92
- "@nx/nx-linux-x64-musl": "19.5.0",
93
- "@nx/nx-win32-x64-msvc": "19.5.0",
94
- "@nx/nx-linux-arm64-gnu": "19.5.0",
95
- "@nx/nx-linux-arm64-musl": "19.5.0",
96
- "@nx/nx-linux-arm-gnueabihf": "19.5.0",
97
- "@nx/nx-win32-arm64-msvc": "19.5.0",
98
- "@nx/nx-freebsd-x64": "19.5.0"
89
+ "@nx/nx-darwin-x64": "19.5.1",
90
+ "@nx/nx-darwin-arm64": "19.5.1",
91
+ "@nx/nx-linux-x64-gnu": "19.5.1",
92
+ "@nx/nx-linux-x64-musl": "19.5.1",
93
+ "@nx/nx-win32-x64-msvc": "19.5.1",
94
+ "@nx/nx-linux-arm64-gnu": "19.5.1",
95
+ "@nx/nx-linux-arm64-musl": "19.5.1",
96
+ "@nx/nx-linux-arm-gnueabihf": "19.5.1",
97
+ "@nx/nx-win32-arm64-msvc": "19.5.1",
98
+ "@nx/nx-freebsd-x64": "19.5.1"
99
99
  },
100
100
  "nx-migrations": {
101
101
  "migrations": "./migrations.json",
Binary file
@@ -135,7 +135,7 @@ function getPackageManagerCommand(packageManager = detectPackageManager(), root
135
135
  process.env.npm_config_legacy_peer_deps ??= 'true';
136
136
  return {
137
137
  install: 'npm install',
138
- ciInstall: 'npm ci',
138
+ ciInstall: 'npm ci --legacy-peer-deps',
139
139
  updateLockFile: 'npm install --package-lock-only',
140
140
  add: 'npm install',
141
141
  addDev: 'npm install -D',