nx 21.5.1-beta.3 → 21.5.1-beta.4

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": "21.5.1-beta.3",
3
+ "version": "21.5.1-beta.4",
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": {
@@ -83,16 +83,16 @@
83
83
  }
84
84
  },
85
85
  "optionalDependencies": {
86
- "@nx/nx-darwin-arm64": "21.5.1-beta.3",
87
- "@nx/nx-darwin-x64": "21.5.1-beta.3",
88
- "@nx/nx-freebsd-x64": "21.5.1-beta.3",
89
- "@nx/nx-linux-arm-gnueabihf": "21.5.1-beta.3",
90
- "@nx/nx-linux-arm64-gnu": "21.5.1-beta.3",
91
- "@nx/nx-linux-arm64-musl": "21.5.1-beta.3",
92
- "@nx/nx-linux-x64-gnu": "21.5.1-beta.3",
93
- "@nx/nx-linux-x64-musl": "21.5.1-beta.3",
94
- "@nx/nx-win32-arm64-msvc": "21.5.1-beta.3",
95
- "@nx/nx-win32-x64-msvc": "21.5.1-beta.3"
86
+ "@nx/nx-darwin-arm64": "21.5.1-beta.4",
87
+ "@nx/nx-darwin-x64": "21.5.1-beta.4",
88
+ "@nx/nx-freebsd-x64": "21.5.1-beta.4",
89
+ "@nx/nx-linux-arm-gnueabihf": "21.5.1-beta.4",
90
+ "@nx/nx-linux-arm64-gnu": "21.5.1-beta.4",
91
+ "@nx/nx-linux-arm64-musl": "21.5.1-beta.4",
92
+ "@nx/nx-linux-x64-gnu": "21.5.1-beta.4",
93
+ "@nx/nx-linux-x64-musl": "21.5.1-beta.4",
94
+ "@nx/nx-win32-arm64-msvc": "21.5.1-beta.4",
95
+ "@nx/nx-win32-x64-msvc": "21.5.1-beta.4"
96
96
  },
97
97
  "nx-migrations": {
98
98
  "migrations": "./migrations.json",
@@ -112,7 +112,7 @@
112
112
  },
113
113
  "neverConnectToCloud": {
114
114
  "type": "boolean",
115
- "description": "Set this to true to disable all connections to Nx Cloud."
115
+ "description": "Setting this to true will cause all attempts to connect your workspace to Nx Cloud to fail. This value does not prevent using Nx Cloud if already connected. Use NX_NO_CLOUD=true env var to prevent using Nx Cloud when running commands."
116
116
  },
117
117
  "parallel": {
118
118
  "type": "number",
@@ -1 +1 @@
1
- {"version":3,"file":"command-object.d.ts","sourceRoot":"","sources":["../../../../../../../packages/nx/src/command-line/nx-cloud/fix-ci/command-object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAGtC,eAAO,MAAM,iBAAiB,EAAE,aAQ/B,CAAC"}
1
+ {"version":3,"file":"command-object.d.ts","sourceRoot":"","sources":["../../../../../../../packages/nx/src/command-line/nx-cloud/fix-ci/command-object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAGtC,eAAO,MAAM,iBAAiB,EAAE,aAY/B,CAAC"}
@@ -5,7 +5,10 @@ const shared_options_1 = require("../../yargs-utils/shared-options");
5
5
  exports.yargsFixCiCommand = {
6
6
  command: 'fix-ci [options]',
7
7
  describe: 'Fixes CI failures. This command is an alias for [`nx-cloud fix-ci`](/ci/reference/nx-cloud-cli#npx-nxcloud-fix-ci).',
8
- builder: (yargs) => (0, shared_options_1.withVerbose)(yargs),
8
+ builder: (yargs) => (0, shared_options_1.withVerbose)(yargs)
9
+ .help(false)
10
+ .showHelpOnFail(false)
11
+ .option('help', { describe: 'Show help.', type: 'boolean' }),
9
12
  handler: async (args) => {
10
13
  process.exit(await (await Promise.resolve().then(() => require('./fix-ci'))).fixCiHandler(args));
11
14
  },
@@ -1 +1 @@
1
- {"version":3,"file":"command-object.d.ts","sourceRoot":"","sources":["../../../../../../../packages/nx/src/command-line/nx-cloud/login/command-object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAGtC,eAAO,MAAM,iBAAiB,EAAE,aAgB/B,CAAC"}
1
+ {"version":3,"file":"command-object.d.ts","sourceRoot":"","sources":["../../../../../../../packages/nx/src/command-line/nx-cloud/login/command-object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAGtC,eAAO,MAAM,iBAAiB,EAAE,aAmB/B,CAAC"}
@@ -9,7 +9,10 @@ exports.yargsLoginCommand = {
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',
11
11
  required: false,
12
- })),
12
+ }))
13
+ .help(false)
14
+ .showHelpOnFail(false)
15
+ .option('help', { describe: 'Show help.', type: 'boolean' }),
13
16
  handler: async (args) => {
14
17
  process.exit(await (await Promise.resolve().then(() => require('./login'))).loginHandler(args));
15
18
  },
@@ -1 +1 @@
1
- {"version":3,"file":"command-object.d.ts","sourceRoot":"","sources":["../../../../../../../packages/nx/src/command-line/nx-cloud/logout/command-object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAGtC,eAAO,MAAM,kBAAkB,EAAE,aAQhC,CAAC"}
1
+ {"version":3,"file":"command-object.d.ts","sourceRoot":"","sources":["../../../../../../../packages/nx/src/command-line/nx-cloud/logout/command-object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAGtC,eAAO,MAAM,kBAAkB,EAAE,aAYhC,CAAC"}
@@ -5,7 +5,10 @@ const shared_options_1 = require("../../yargs-utils/shared-options");
5
5
  exports.yargsLogoutCommand = {
6
6
  command: 'logout',
7
7
  describe: 'Logout from Nx Cloud. This command is an alias for [`nx-cloud logout`](/ci/reference/nx-cloud-cli#npx-nxcloud-logout).',
8
- builder: (yargs) => (0, shared_options_1.withVerbose)(yargs),
8
+ builder: (yargs) => (0, shared_options_1.withVerbose)(yargs)
9
+ .help(false)
10
+ .showHelpOnFail(false)
11
+ .option('help', { describe: 'Show help.', type: 'boolean' }),
9
12
  handler: async (args) => {
10
13
  process.exit(await (await Promise.resolve().then(() => require('./logout'))).logoutHandler(args));
11
14
  },
@@ -1 +1 @@
1
- {"version":3,"file":"command-object.d.ts","sourceRoot":"","sources":["../../../../../../../packages/nx/src/command-line/nx-cloud/record/command-object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAGtC,eAAO,MAAM,kBAAkB,EAAE,aAQhC,CAAC"}
1
+ {"version":3,"file":"command-object.d.ts","sourceRoot":"","sources":["../../../../../../../packages/nx/src/command-line/nx-cloud/record/command-object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAGtC,eAAO,MAAM,kBAAkB,EAAE,aAYhC,CAAC"}
@@ -5,7 +5,10 @@ const shared_options_1 = require("../../yargs-utils/shared-options");
5
5
  exports.yargsRecordCommand = {
6
6
  command: 'record [options]',
7
7
  describe: 'Records a command execution for distributed task execution. This command is an alias for [`nx-cloud record`](/ci/reference/nx-cloud-cli#npx-nxcloud-record).',
8
- builder: (yargs) => (0, shared_options_1.withVerbose)(yargs),
8
+ builder: (yargs) => (0, shared_options_1.withVerbose)(yargs)
9
+ .help(false)
10
+ .showHelpOnFail(false)
11
+ .option('help', { describe: 'Show help.', type: 'boolean' }),
9
12
  handler: async (args) => {
10
13
  process.exit(await (await Promise.resolve().then(() => require('./record'))).recordHandler(args));
11
14
  },
@@ -1 +1 @@
1
- {"version":3,"file":"command-object.d.ts","sourceRoot":"","sources":["../../../../../../../packages/nx/src/command-line/nx-cloud/start-ci-run/command-object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAGtC,eAAO,MAAM,sBAAsB,EAAE,aAUpC,CAAC"}
1
+ {"version":3,"file":"command-object.d.ts","sourceRoot":"","sources":["../../../../../../../packages/nx/src/command-line/nx-cloud/start-ci-run/command-object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAGtC,eAAO,MAAM,sBAAsB,EAAE,aAcpC,CAAC"}
@@ -5,7 +5,10 @@ const shared_options_1 = require("../../yargs-utils/shared-options");
5
5
  exports.yargsStartCiRunCommand = {
6
6
  command: 'start-ci-run [options]',
7
7
  describe: 'Starts a new CI run for distributed task execution. This command is an alias for [`nx-cloud start-ci-run`](/ci/reference/nx-cloud-cli#npx-nxcloud-start-ci-run).',
8
- builder: (yargs) => (0, shared_options_1.withVerbose)(yargs),
8
+ builder: (yargs) => (0, shared_options_1.withVerbose)(yargs)
9
+ .help(false)
10
+ .showHelpOnFail(false)
11
+ .option('help', { describe: 'Show help.', type: 'boolean' }),
9
12
  handler: async (args) => {
10
13
  process.exit(await (await Promise.resolve().then(() => require('./start-ci-run'))).startCiRunHandler(args));
11
14
  },