Skip to content

Conversation

Copy link
Contributor

Copilot AI commented Oct 29, 2025

The --tui and --no-tui command-line flags were added after the terminal UI documentation was written. Docs need to reference these flags alongside the existing configuration methods.

Changes

Updated astro-docs/src/content/docs/guides/Tasks & Caching/terminal-ui.mdoc:

  • Added --tui and --no-tui flags to the "Enable/Disable the Terminal UI" section
  • Restructured as bulleted list showing all four configuration methods

Usage

Users can now control the Terminal UI via:

  • --tui / --no-tui flags: nx run-many -t build --no-tui
  • NX_TUI environment variable
  • tui.enabled in nx.json

Fixes https://linear.app/nxdev/issue/NXC-3371

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • repo.gradle.org
  • staging.nx.app

If you need me to access, download, or install something from one of these locations, you can either:

Original prompt

Issue Title: Update https://nx.dev/docs/guides/tasks--caching/terminal-ui#enabledisable-the-terminal-ui to reference the --tui and --no-tui flags
Issue Description: These were added after the other methods, docs need to be updated to have them in the nrwl/nx repo
Fixes https://linear.app/nxdev/issue/NXC-3371/update-httpsnxdevdocsguidestasks-cachingterminal-uienabledisable-the

Comment by User 4215f3ef-50bd-4f09-85a0-b489c88057b6:
https://github.com/nrwl/nx

Comment by User d484ef82-7f7d-4a95-be09-9d82ca3905dc:
📋 I wasn't able to determine which GitHub repository to work in.

I think it's one of these, but can you tell me which one is right?

Comment by User :
This thread is for an agent session with githubcopilot.


✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

@vercel
Copy link

vercel bot commented Oct 29, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Review Updated (UTC)
nx-dev Ready Ready Preview Dec 29, 2025 8:20pm

@netlify
Copy link

netlify bot commented Oct 29, 2025

Deploy Preview for nx-docs ready!

Name Link
🔨 Latest commit c899add
🔍 Latest deploy log https://app.netlify.com/projects/nx-docs/deploys/6952e0e5dcc39a000861263e
😎 Deploy Preview https://deploy-preview-33303--nx-docs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@nx-cloud
Copy link
Contributor

nx-cloud bot commented Oct 29, 2025

View your CI Pipeline Execution ↗ for commit c899add

Command Status Duration Result
nx affected --targets=lint,test,test-kt,build,e... ✅ Succeeded 8m 31s View ↗
nx run-many -t check-imports check-lock-files c... ✅ Succeeded 2m 40s View ↗
nx-cloud record -- nx-cloud conformance:check ✅ Succeeded 11s View ↗
nx-cloud record -- nx format:check ✅ Succeeded <1s View ↗
nx-cloud record -- nx sync:check ✅ Succeeded <1s View ↗

☁️ Nx Cloud last updated this comment at 2025-12-29 20:27:25 UTC

Copilot AI changed the title [WIP] Update terminal UI documentation to include --tui and --no-tui flags docs: add --tui and --no-tui flags to terminal UI documentation Oct 29, 2025
Copilot AI requested a review from AgentEnder October 29, 2025 22:39
@AgentEnder AgentEnder marked this pull request as ready for review October 30, 2025 03:58
@AgentEnder AgentEnder requested a review from a team as a code owner October 30, 2025 03:58
@AgentEnder AgentEnder requested a review from jaysoo October 30, 2025 03:58
@jaysoo jaysoo changed the title docs: add --tui and --no-tui flags to terminal UI documentation docs(core): add --tui and --no-tui flags to terminal UI documentation Dec 29, 2025
nx-cloud[bot]

This comment was marked as outdated.

Copy link
Contributor

@nx-cloud nx-cloud bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Important

A new CI pipeline execution was requested that may update the conclusion below...

Nx Cloud is proposing a fix for your failed CI:

These changes fix the format check failure by adding trailing commas to JSON code examples in the inputs reference documentation. The astro-docs:format task was failing because the file didn't comply with the project's Prettier formatting standards.

We verified this fix by re-running astro-docs:format.

Suggested Fix changes
diff --git a/astro-docs/src/content/docs/reference/inputs.mdoc b/astro-docs/src/content/docs/reference/inputs.mdoc
index be74660f22..8601e3dbde 100644
--- a/astro-docs/src/content/docs/reference/inputs.mdoc
+++ b/astro-docs/src/content/docs/reference/inputs.mdoc
@@ -35,8 +35,8 @@ Source file inputs are defined like this:
     "{projectRoot}/**/*", // All files in a project
     "{workspaceRoot}/.gitignore", // A specific file in the workspace
     "{projectRoot}/**/*.ts", // A glob pattern for files
-    "!{projectRoot}/**/*.spec.ts" // Excluding files matching a glob pattern
-  ]
+    "!{projectRoot}/**/*.spec.ts", // Excluding files matching a glob pattern
+  ],
 }
 ​`​`​`
 
@@ -46,7 +46,7 @@ Alternatively, you can use the object format with the `fileset` property:
 
 ​`​`​`jsonc
 {
-  "inputs": [{ "fileset": "{projectRoot}/**/*" }]
+  "inputs": [{ "fileset": "{projectRoot}/**/*" }],
 }
 ​`​`​`
 
@@ -199,8 +199,8 @@ You can reference named inputs from specific projects or from project dependenci
 
     // Reference a named input from all project dependencies
     // Equivalent to: { "input": "production", "dependencies": true }
-    "^production"
-  ]
+    "^production",
+  ],
 }
 ​`​`​`
 

Note

A fix is available, but it can't be applied automatically because the branch is outdated. Please sync the branch, then apply the fix locally.

Apply changes locally with:

npx nx-cloud apply-locally Aot5-3QvR

Apply fix locally with your editor ↗   View interactive diff ↗


🎓 Learn more about Self-Healing CI on nx.dev

@jaysoo jaysoo force-pushed the copilot/update-terminal-ui-flags branch from bb94eca to c899add Compare December 29, 2025 20:13
@jaysoo jaysoo merged commit 84450f6 into master Dec 29, 2025
20 checks passed
@jaysoo jaysoo deleted the copilot/update-terminal-ui-flags branch December 29, 2025 20:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants