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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nx",
3
- "version": "19.7.0-beta.4",
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.4"
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.4",
90
- "@nx/nx-darwin-arm64": "19.7.0-beta.4",
91
- "@nx/nx-linux-x64-gnu": "19.7.0-beta.4",
92
- "@nx/nx-linux-x64-musl": "19.7.0-beta.4",
93
- "@nx/nx-win32-x64-msvc": "19.7.0-beta.4",
94
- "@nx/nx-linux-arm64-gnu": "19.7.0-beta.4",
95
- "@nx/nx-linux-arm64-musl": "19.7.0-beta.4",
96
- "@nx/nx-linux-arm-gnueabihf": "19.7.0-beta.4",
97
- "@nx/nx-win32-arm64-msvc": "19.7.0-beta.4",
98
- "@nx/nx-freebsd-x64": "19.7.0-beta.4"
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: false,
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: false,
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));