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 +11 -11
- package/src/command-line/init/implementation/angular/standalone-workspace.js +2 -1
- package/src/core/graph/main.js +1 -1
- package/src/native/nx.wasm32-wasi.wasm +0 -0
- package/src/plugins/js/utils/register.d.ts +2 -0
- package/src/plugins/js/versions.d.ts +1 -1
- package/src/plugins/js/versions.js +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "nx",
|
3
|
-
"version": "20.4.0-beta.
|
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.
|
86
|
-
"@nx/nx-darwin-x64": "20.4.0-beta.
|
87
|
-
"@nx/nx-freebsd-x64": "20.4.0-beta.
|
88
|
-
"@nx/nx-linux-arm-gnueabihf": "20.4.0-beta.
|
89
|
-
"@nx/nx-linux-arm64-gnu": "20.4.0-beta.
|
90
|
-
"@nx/nx-linux-arm64-musl": "20.4.0-beta.
|
91
|
-
"@nx/nx-linux-x64-gnu": "20.4.0-beta.
|
92
|
-
"@nx/nx-linux-x64-musl": "20.4.0-beta.
|
93
|
-
"@nx/nx-win32-arm64-msvc": "20.4.0-beta.
|
94
|
-
"@nx/nx-win32-x64-msvc": "20.4.0-beta.
|
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);
|