-
Notifications
You must be signed in to change notification settings - Fork 2.6k
docs(core): add --tui and --no-tui flags to terminal UI documentation #33303
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
✅ Deploy Preview for nx-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
View your CI Pipeline Execution ↗ for commit c899add
☁️ Nx Cloud last updated this comment at |
astro-docs/src/content/docs/guides/Tasks & Caching/terminal-ui.mdoc
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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
Co-authored-by: AgentEnder <[email protected]>
…g/terminal-ui.mdoc Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com>
bb94eca to
c899add
Compare

The
--tuiand--no-tuicommand-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:--tuiand--no-tuiflags to the "Enable/Disable the Terminal UI" sectionUsage
Users can now control the Terminal UI via:
--tui/--no-tuiflags:nx run-many -t build --no-tuiNX_TUIenvironment variabletui.enabledinnx.jsonFixes 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.orgstaging.nx.appIf you need me to access, download, or install something from one of these locations, you can either:
Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.