nx 21.3.0-beta.4 → 21.3.0-beta.6

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.3.0-beta.4",
3
+ "version": "21.3.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": {
@@ -50,7 +50,7 @@
50
50
  "flat": "^5.0.2",
51
51
  "front-matter": "^4.0.2",
52
52
  "ignore": "^5.0.4",
53
- "jest-diff": "^29.4.1",
53
+ "jest-diff": "^30.0.2",
54
54
  "jsonc-parser": "3.2.0",
55
55
  "lines-and-columns": "2.0.3",
56
56
  "minimatch": "9.0.3",
@@ -83,16 +83,16 @@
83
83
  }
84
84
  },
85
85
  "optionalDependencies": {
86
- "@nx/nx-darwin-arm64": "21.3.0-beta.4",
87
- "@nx/nx-darwin-x64": "21.3.0-beta.4",
88
- "@nx/nx-freebsd-x64": "21.3.0-beta.4",
89
- "@nx/nx-linux-arm-gnueabihf": "21.3.0-beta.4",
90
- "@nx/nx-linux-arm64-gnu": "21.3.0-beta.4",
91
- "@nx/nx-linux-arm64-musl": "21.3.0-beta.4",
92
- "@nx/nx-linux-x64-gnu": "21.3.0-beta.4",
93
- "@nx/nx-linux-x64-musl": "21.3.0-beta.4",
94
- "@nx/nx-win32-arm64-msvc": "21.3.0-beta.4",
95
- "@nx/nx-win32-x64-msvc": "21.3.0-beta.4"
86
+ "@nx/nx-darwin-arm64": "21.3.0-beta.6",
87
+ "@nx/nx-darwin-x64": "21.3.0-beta.6",
88
+ "@nx/nx-freebsd-x64": "21.3.0-beta.6",
89
+ "@nx/nx-linux-arm-gnueabihf": "21.3.0-beta.6",
90
+ "@nx/nx-linux-arm64-gnu": "21.3.0-beta.6",
91
+ "@nx/nx-linux-arm64-musl": "21.3.0-beta.6",
92
+ "@nx/nx-linux-x64-gnu": "21.3.0-beta.6",
93
+ "@nx/nx-linux-x64-musl": "21.3.0-beta.6",
94
+ "@nx/nx-win32-arm64-msvc": "21.3.0-beta.6",
95
+ "@nx/nx-win32-x64-msvc": "21.3.0-beta.6"
96
96
  },
97
97
  "nx-migrations": {
98
98
  "migrations": "./migrations.json",
@@ -25,6 +25,7 @@ export interface RunOptions {
25
25
  }
26
26
  export interface TuiOptions {
27
27
  tuiAutoExit: boolean | number;
28
+ tui: boolean;
28
29
  }
29
30
  export declare function withTuiOptions<T>(yargs: Argv<T>): Argv<T & TuiOptions>;
30
31
  export declare function withRunOptions<T>(yargs: Argv<T>): Argv<T & RunOptions>;
@@ -38,6 +38,11 @@ function withTuiOptions(yargs) {
38
38
  describe: 'Whether or not to exit the TUI automatically after all tasks finish, and after how long. If set to `true`, the TUI will exit immediately. If set to `false` the TUI will not automatically exit. If set to a number, an interruptible countdown popup will be shown for that many seconds before the TUI exits.',
39
39
  type: 'string',
40
40
  coerce: (v) => coerceTuiAutoExit(v),
41
+ })
42
+ .option('tui', {
43
+ describe: 'Enable or disable the Nx Terminal UI.',
44
+ type: 'boolean',
45
+ conflicts: 'outputStyle',
41
46
  })
42
47
  .middleware((args) => {
43
48
  if (args.tuiAutoExit !== undefined) {