nx 20.6.3 → 20.6.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",
3
- "version": "20.6.3",
3
+ "version": "20.6.4",
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": {
@@ -82,16 +82,16 @@
82
82
  }
83
83
  },
84
84
  "optionalDependencies": {
85
- "@nx/nx-darwin-arm64": "20.6.3",
86
- "@nx/nx-darwin-x64": "20.6.3",
87
- "@nx/nx-freebsd-x64": "20.6.3",
88
- "@nx/nx-linux-arm-gnueabihf": "20.6.3",
89
- "@nx/nx-linux-arm64-gnu": "20.6.3",
90
- "@nx/nx-linux-arm64-musl": "20.6.3",
91
- "@nx/nx-linux-x64-gnu": "20.6.3",
92
- "@nx/nx-linux-x64-musl": "20.6.3",
93
- "@nx/nx-win32-arm64-msvc": "20.6.3",
94
- "@nx/nx-win32-x64-msvc": "20.6.3"
85
+ "@nx/nx-darwin-arm64": "20.6.4",
86
+ "@nx/nx-darwin-x64": "20.6.4",
87
+ "@nx/nx-freebsd-x64": "20.6.4",
88
+ "@nx/nx-linux-arm-gnueabihf": "20.6.4",
89
+ "@nx/nx-linux-arm64-gnu": "20.6.4",
90
+ "@nx/nx-linux-arm64-musl": "20.6.4",
91
+ "@nx/nx-linux-x64-gnu": "20.6.4",
92
+ "@nx/nx-linux-x64-musl": "20.6.4",
93
+ "@nx/nx-win32-arm64-msvc": "20.6.4",
94
+ "@nx/nx-win32-x64-msvc": "20.6.4"
95
95
  },
96
96
  "nx-migrations": {
97
97
  "migrations": "./migrations.json",
Binary file
@@ -161,6 +161,7 @@ function getTranspiler(compilerOptions, tsConfigRaw) {
161
161
  // use NodeJs module resolution until support for TS 4.x is dropped and then
162
162
  // we can switch to Node10
163
163
  compilerOptions.moduleResolution = ts.ModuleResolutionKind.NodeJs;
164
+ compilerOptions.customConditions = null;
164
165
  compilerOptions.target = ts.ScriptTarget.ES2021;
165
166
  compilerOptions.inlineSourceMap = true;
166
167
  compilerOptions.skipLibCheck = true;