nx 19.7.0-beta.4 → 19.7.0-beta.6
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +12 -12
- package/src/command-line/login/command-object.js +1 -1
- package/src/command-line/logout/command-object.js +1 -1
- package/src/core/graph/main.js +1 -1
- package/src/migrations/update-15-0-0/prefix-outputs.js +3 -18
- package/src/native/index.d.ts +4 -0
- package/src/native/native-bindings.js +2 -0
- package/src/native/nx.wasi-browser.js +53 -49
- package/src/native/nx.wasi.cjs +53 -49
- package/src/native/nx.wasm32-wasi.wasm +0 -0
- package/src/nx-cloud/generators/connect-to-nx-cloud/connect-to-nx-cloud.js +6 -41
- package/src/tasks-runner/utils.d.ts +1 -8
- package/src/tasks-runner/utils.js +9 -12
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "nx",
|
3
|
-
"version": "19.7.0-beta.
|
3
|
+
"version": "19.7.0-beta.6",
|
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": {
|
@@ -71,7 +71,7 @@
|
|
71
71
|
"yargs-parser": "21.1.1",
|
72
72
|
"node-machine-id": "1.1.12",
|
73
73
|
"ora": "5.3.0",
|
74
|
-
"@nrwl/tao": "19.7.0-beta.
|
74
|
+
"@nrwl/tao": "19.7.0-beta.6"
|
75
75
|
},
|
76
76
|
"peerDependencies": {
|
77
77
|
"@swc-node/register": "^1.8.0",
|
@@ -86,16 +86,16 @@
|
|
86
86
|
}
|
87
87
|
},
|
88
88
|
"optionalDependencies": {
|
89
|
-
"@nx/nx-darwin-x64": "19.7.0-beta.
|
90
|
-
"@nx/nx-darwin-arm64": "19.7.0-beta.
|
91
|
-
"@nx/nx-linux-x64-gnu": "19.7.0-beta.
|
92
|
-
"@nx/nx-linux-x64-musl": "19.7.0-beta.
|
93
|
-
"@nx/nx-win32-x64-msvc": "19.7.0-beta.
|
94
|
-
"@nx/nx-linux-arm64-gnu": "19.7.0-beta.
|
95
|
-
"@nx/nx-linux-arm64-musl": "19.7.0-beta.
|
96
|
-
"@nx/nx-linux-arm-gnueabihf": "19.7.0-beta.
|
97
|
-
"@nx/nx-win32-arm64-msvc": "19.7.0-beta.
|
98
|
-
"@nx/nx-freebsd-x64": "19.7.0-beta.
|
89
|
+
"@nx/nx-darwin-x64": "19.7.0-beta.6",
|
90
|
+
"@nx/nx-darwin-arm64": "19.7.0-beta.6",
|
91
|
+
"@nx/nx-linux-x64-gnu": "19.7.0-beta.6",
|
92
|
+
"@nx/nx-linux-x64-musl": "19.7.0-beta.6",
|
93
|
+
"@nx/nx-win32-x64-msvc": "19.7.0-beta.6",
|
94
|
+
"@nx/nx-linux-arm64-gnu": "19.7.0-beta.6",
|
95
|
+
"@nx/nx-linux-arm64-musl": "19.7.0-beta.6",
|
96
|
+
"@nx/nx-linux-arm-gnueabihf": "19.7.0-beta.6",
|
97
|
+
"@nx/nx-win32-arm64-msvc": "19.7.0-beta.6",
|
98
|
+
"@nx/nx-freebsd-x64": "19.7.0-beta.6"
|
99
99
|
},
|
100
100
|
"nx-migrations": {
|
101
101
|
"migrations": "./migrations.json",
|
@@ -4,7 +4,7 @@ exports.yargsLoginCommand = void 0;
|
|
4
4
|
const shared_options_1 = require("../../command-line/yargs-utils/shared-options");
|
5
5
|
exports.yargsLoginCommand = {
|
6
6
|
command: 'login [nxCloudUrl]',
|
7
|
-
describe:
|
7
|
+
describe: 'Login to Nx Cloud. This command is an alias for [`nx-cloud login`](/ci/reference/nx-cloud-cli#npx-nxcloud-login).',
|
8
8
|
builder: (yargs) => (0, shared_options_1.withVerbose)(yargs.positional('nxCloudUrl', {
|
9
9
|
describe: 'The Nx Cloud URL of the instance you are trying to connect to. If no positional argument is provided, this command will connect to https://cloud.nx.app.',
|
10
10
|
type: 'string',
|
@@ -4,7 +4,7 @@ exports.yargsLogoutCommand = void 0;
|
|
4
4
|
const shared_options_1 = require("../../command-line/yargs-utils/shared-options");
|
5
5
|
exports.yargsLogoutCommand = {
|
6
6
|
command: 'logout',
|
7
|
-
describe:
|
7
|
+
describe: 'Logout from Nx Cloud. This command is an alias for [`nx-cloud logout`](/ci/reference/nx-cloud-cli#npx-nxcloud-logout).',
|
8
8
|
builder: (yargs) => (0, shared_options_1.withVerbose)(yargs),
|
9
9
|
handler: async (args) => {
|
10
10
|
process.exit(await (await Promise.resolve().then(() => require('./logout'))).logoutHandler(args));
|