nx 20.4.0-beta.0 → 20.4.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.4.0-beta.0",
3
+ "version": "20.4.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": {
@@ -82,16 +82,16 @@
82
82
  }
83
83
  },
84
84
  "optionalDependencies": {
85
- "@nx/nx-darwin-arm64": "20.4.0-beta.0",
86
- "@nx/nx-darwin-x64": "20.4.0-beta.0",
87
- "@nx/nx-freebsd-x64": "20.4.0-beta.0",
88
- "@nx/nx-linux-arm-gnueabihf": "20.4.0-beta.0",
89
- "@nx/nx-linux-arm64-gnu": "20.4.0-beta.0",
90
- "@nx/nx-linux-arm64-musl": "20.4.0-beta.0",
91
- "@nx/nx-linux-x64-gnu": "20.4.0-beta.0",
92
- "@nx/nx-linux-x64-musl": "20.4.0-beta.0",
93
- "@nx/nx-win32-arm64-msvc": "20.4.0-beta.0",
94
- "@nx/nx-win32-x64-msvc": "20.4.0-beta.0"
85
+ "@nx/nx-darwin-arm64": "20.4.0-beta.1",
86
+ "@nx/nx-darwin-x64": "20.4.0-beta.1",
87
+ "@nx/nx-freebsd-x64": "20.4.0-beta.1",
88
+ "@nx/nx-linux-arm-gnueabihf": "20.4.0-beta.1",
89
+ "@nx/nx-linux-arm64-gnu": "20.4.0-beta.1",
90
+ "@nx/nx-linux-arm64-musl": "20.4.0-beta.1",
91
+ "@nx/nx-linux-x64-gnu": "20.4.0-beta.1",
92
+ "@nx/nx-linux-x64-musl": "20.4.0-beta.1",
93
+ "@nx/nx-win32-arm64-msvc": "20.4.0-beta.1",
94
+ "@nx/nx-win32-x64-msvc": "20.4.0-beta.1"
95
95
  },
96
96
  "nx-migrations": {
97
97
  "migrations": "./migrations.json",
@@ -114,7 +114,8 @@ function updateProjectOutputs(repoRoot, project) {
114
114
  else if (target.executor === '@angular-eslint/builder:lint') {
115
115
  target.outputs = ['{options.outputFile}'];
116
116
  }
117
- else if (target.executor === '@angular-devkit/build-angular:ng-packagr') {
117
+ else if (target.executor === '@angular-devkit/build-angular:ng-packagr' ||
118
+ target.executor === '@angular/build:ng-packagr') {
118
119
  try {
119
120
  const ngPackageJsonPath = (0, path_1.join)(repoRoot, target.options.project);
120
121
  const ngPackageJson = (0, fileutils_1.readJsonFile)(ngPackageJsonPath);