fix(cli): Move EXPERIMENTAL label from ls command to --output flag - #13709
Merged
Merged
Conversation
Contributor
|
@okxint is attempting to deploy a commit to the Internal Apps Team on Vercel. A member of the Team first needs to authorize it. |
The EXPERIMENTAL prefix was on the ls subcommand itself, making turbo --help show the whole command as experimental. The docs at turborepo.dev only mark the --output flag as experimental, not the command. Move the annotation to --output to match the documented intent. Update the two help snapshots accordingly. Closes vercel#13700 Co-authored-by: okxint <cashmein.eth@gmail.com>
anthonyshew
force-pushed
the
fix/ls-experimental-help-text
branch
from
August 11, 2026 17:26
30ce540 to
e8336b1
Compare
anthonyshew
pushed a commit
that referenced
this pull request
Aug 12, 2026
## Release v2.10.10-canary.3 > [!CAUTION] > Versioned docs aliasing FAILED. [View logs](https://github.com/vercel/turborepo/actions/runs/31554043870) ### Changes - fix(deps): Upgrade js-yaml to 4.3.1 (GHSA-5p4m-2wfm-xmqj) (#13704) (`f12c6e9`) - chore: Move pnpm overrides to pnpm-workspace.yaml (#13706) (`1475441`) - chore: Release Turborepo 2.10.10-canary.2 (#13707) (`c72285f`) - fix: Enable Eve examples pull requests (#13708) (`4e57b15`) - feat: Add Eve operator dashboard (#13710) (`96b9647`) - fix: Remove unsupported sandbox network policy (#13712) (`688614d`) - feat: Rotate Eve example maintenance daily (#13715) (`ec56a7f`) - fix: Resolve agent lint errors (#13716) (`bb535e9`) - chore: Upgrade TypeScript to 7.0.2 (#13713) (`2afa75d`) - fix(cli): Move EXPERIMENTAL label from ls command to --output flag (#13709) (`422ba28`) - fix: Apply nested parent gitignore patterns in manual hashing (#13690) (`2b8863c`) - feat: Add pytest task discovery (#13720) (`24e07a7`) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
anthonyshew
pushed a commit
that referenced
this pull request
Aug 14, 2026
## Release v2.10.10 > [!CAUTION] > Versioned docs aliasing FAILED. [View logs](https://github.com/vercel/turborepo/actions/runs/31803665773) ### Changes - chore: Release Turborepo 2.10.9 (#13696) (`c21e2e2`) - docs: Update Geistdocs to 1.19.6 (#13701) (`9bbc2c8`) - feat: Support nub.lock files (#13699) (`4740bac`) - chore: Release Turborepo 2.10.10-canary.1 (#13703) (`44c6fd6`) - perf: Walk the repository once when pruning (#13705) (`c59a533`) - fix(deps): Upgrade js-yaml to 4.3.1 (GHSA-5p4m-2wfm-xmqj) (#13704) (`f12c6e9`) - chore: Move pnpm overrides to pnpm-workspace.yaml (#13706) (`1475441`) - chore: Release Turborepo 2.10.10-canary.2 (#13707) (`c72285f`) - fix: Enable Eve examples pull requests (#13708) (`4e57b15`) - feat: Add Eve operator dashboard (#13710) (`96b9647`) - fix: Remove unsupported sandbox network policy (#13712) (`688614d`) - feat: Rotate Eve example maintenance daily (#13715) (`ec56a7f`) - fix: Resolve agent lint errors (#13716) (`bb535e9`) - chore: Upgrade TypeScript to 7.0.2 (#13713) (`2afa75d`) - fix(cli): Move EXPERIMENTAL label from ls command to --output flag (#13709) (`422ba28`) - fix: Apply nested parent gitignore patterns in manual hashing (#13690) (`2b8863c`) - feat: Add pytest task discovery (#13720) (`24e07a7`) - chore: Release Turborepo 2.10.10-canary.3 (#13721) (`bb46749`) - chore: Validate updated examples with turbo (#13723) (`ad53149`) - chore: Update with-rollup example (#13718) (`42ec389`) - feat: Notify Slack when agents open PRs (#13722) (`aa070b1`) - chore: Enforce draft pull requests (#13726) (`6a46551`) - fix: Expose Slack delivery diagnostics (#13733) (`caddaa9`) - chore: Update non-monorepo example (#13727) (`0bfd752`) - chore: Update with-rsbuild example (#13730) (`e0aee94`) - feat: Add daily performance agent (#13729) (`c4ac03b`) - feat: Support cross-toolchain repository affectedness (#13737) (`31b0c4f`) - fix: Scope musl library dependency installation (#13738) (`1da105f`) - chore: Release Turbo repository packages 0.0.1-canary.24 (#13739) (`65aa565`) - fix(bun): Preserve overrides objects, trustedDependencies, workspace bins and git integrity through prune; accept lockfileVersion 3 (#13740) (`ea08fac`) --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #13700
The
EXPERIMENTAL:prefix was on thelssubcommand itself, soturbo --helpshowed the whole command as experimental. The docs at turborepo.dev only mark the--outputflag as experimental, not the command itself. This moves the annotation from the command doc comment to the--outputfield to match what the docs say.Updated both CLI help snapshots to reflect the new output.