nx 20.0.0-rc.0 → 20.0.1

Sign up to get free protection for your applications and to get access to all the features.
package/migrations.json CHANGED
@@ -57,6 +57,12 @@
57
57
  "version": "20.0.0-beta.7",
58
58
  "description": "Migration for v20.0.0-beta.7",
59
59
  "implementation": "./src/migrations/update-20-0-0/move-use-daemon-process"
60
+ },
61
+ "use-legacy-cache": {
62
+ "version": "20.0.1",
63
+ "description": "Set `useLegacyCache` to true for migrating workspaces",
64
+ "implementation": "./src/migrations/update-20-0-1/use-legacy-cache",
65
+ "x-repair-skip": true
60
66
  }
61
67
  }
62
68
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nx",
3
- "version": "20.0.0-rc.0",
3
+ "version": "20.0.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": {
@@ -80,16 +80,16 @@
80
80
  }
81
81
  },
82
82
  "optionalDependencies": {
83
- "@nx/nx-darwin-x64": "20.0.0-rc.0",
84
- "@nx/nx-darwin-arm64": "20.0.0-rc.0",
85
- "@nx/nx-linux-x64-gnu": "20.0.0-rc.0",
86
- "@nx/nx-linux-x64-musl": "20.0.0-rc.0",
87
- "@nx/nx-win32-x64-msvc": "20.0.0-rc.0",
88
- "@nx/nx-linux-arm64-gnu": "20.0.0-rc.0",
89
- "@nx/nx-linux-arm64-musl": "20.0.0-rc.0",
90
- "@nx/nx-linux-arm-gnueabihf": "20.0.0-rc.0",
91
- "@nx/nx-win32-arm64-msvc": "20.0.0-rc.0",
92
- "@nx/nx-freebsd-x64": "20.0.0-rc.0"
83
+ "@nx/nx-darwin-x64": "20.0.1",
84
+ "@nx/nx-darwin-arm64": "20.0.1",
85
+ "@nx/nx-linux-x64-gnu": "20.0.1",
86
+ "@nx/nx-linux-x64-musl": "20.0.1",
87
+ "@nx/nx-win32-x64-msvc": "20.0.1",
88
+ "@nx/nx-linux-arm64-gnu": "20.0.1",
89
+ "@nx/nx-linux-arm64-musl": "20.0.1",
90
+ "@nx/nx-linux-arm-gnueabihf": "20.0.1",
91
+ "@nx/nx-win32-arm64-msvc": "20.0.1",
92
+ "@nx/nx-freebsd-x64": "20.0.1"
93
93
  },
94
94
  "nx-migrations": {
95
95
  "migrations": "./migrations.json",