nx 20.1.0-beta.0 → 20.1.0-beta.1

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.1.0-beta.0",
3
+ "version": "20.1.0-beta.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.1.0-beta.0",
84
- "@nx/nx-darwin-arm64": "20.1.0-beta.0",
85
- "@nx/nx-linux-x64-gnu": "20.1.0-beta.0",
86
- "@nx/nx-linux-x64-musl": "20.1.0-beta.0",
87
- "@nx/nx-win32-x64-msvc": "20.1.0-beta.0",
88
- "@nx/nx-linux-arm64-gnu": "20.1.0-beta.0",
89
- "@nx/nx-linux-arm64-musl": "20.1.0-beta.0",
90
- "@nx/nx-linux-arm-gnueabihf": "20.1.0-beta.0",
91
- "@nx/nx-win32-arm64-msvc": "20.1.0-beta.0",
92
- "@nx/nx-freebsd-x64": "20.1.0-beta.0"
83
+ "@nx/nx-darwin-x64": "20.1.0-beta.1",
84
+ "@nx/nx-darwin-arm64": "20.1.0-beta.1",
85
+ "@nx/nx-linux-x64-gnu": "20.1.0-beta.1",
86
+ "@nx/nx-linux-x64-musl": "20.1.0-beta.1",
87
+ "@nx/nx-win32-x64-msvc": "20.1.0-beta.1",
88
+ "@nx/nx-linux-arm64-gnu": "20.1.0-beta.1",
89
+ "@nx/nx-linux-arm64-musl": "20.1.0-beta.1",
90
+ "@nx/nx-linux-arm-gnueabihf": "20.1.0-beta.1",
91
+ "@nx/nx-win32-arm64-msvc": "20.1.0-beta.1",
92
+ "@nx/nx-freebsd-x64": "20.1.0-beta.1"
93
93
  },
94
94
  "nx-migrations": {
95
95
  "migrations": "./migrations.json",
Binary file
@@ -253,8 +253,10 @@ plugins) {
253
253
  else {
254
254
  errorBodyLines.push(` - ${e.message}`);
255
255
  }
256
- const innerStackTrace = ' ' + e.stack.split('\n').join('\n ');
257
- errorBodyLines.push(innerStackTrace);
256
+ if (e.stack) {
257
+ const innerStackTrace = ' ' + e.stack.split('\n')?.join('\n ');
258
+ errorBodyLines.push(innerStackTrace);
259
+ }
258
260
  }
259
261
  error.stack = errorBodyLines.join('\n');
260
262
  // This represents a single plugin erroring out with a hard error.