Skip to content

Commit 4acd1df

Browse files
authored
docs: migrate to turborepo.com (#10368)
### Description We're changing `turbo.build` to `turborepo.com`. This PR changes the strings with a find and replace across the whole of the codebase. ### Testing Instructions 👀
1 parent dc0b141 commit 4acd1df

File tree

327 files changed

+667
-666
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

327 files changed

+667
-666
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ Key characteristics of a great example include:
224224
- One technology added to the `basic` example
225225
- An updated README at the root of the example directory. Make sure to include any steps required to run the example
226226
- All tasks in `turbo.json` in the example run successfully without any code changes needed
227-
- Works with every package manager listed in our [Support Policy](https://turbo.build/docs/getting-started/support-policy#package-managers)
227+
- Works with every package manager listed in our [Support Policy](https://turborepo.com/docs/getting-started/support-policy#package-managers)
228228

229229
Once you've created your example (with prior approval, as discussed above), you can submit a pull request to the repository.
230230

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<a href="https://turbo.build">
2+
<a href="https://turborepo.com">
33
<picture>
44
<source media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/4060187/196936123-f6e1db90-784d-4174-b774-92502b718836.png">
55
<img src="https://user-images.githubusercontent.com/4060187/196936104-5797972c-ab10-4834-bd61-0d1e5f442c9c.png" height="128">
@@ -19,7 +19,7 @@ Turborepo is a high-performance build system for JavaScript and TypeScript codeb
1919

2020
## Getting Started
2121

22-
Visit https://turbo.build/repo to get started with Turborepo.
22+
Visit https://turborepo.com/repo to get started with Turborepo.
2323

2424
## Contributing
2525

@@ -35,7 +35,7 @@ Our [Code of Conduct](https://github.com/vercel/turborepo/blob/main/CODE_OF_COND
3535

3636
## Who is using Turborepo?
3737

38-
Turborepo is used by the world's leading companies. Check out the [Turborepo Showcase](https://turbo.build/showcase) to learn more.
38+
Turborepo is used by the world's leading companies. Check out the [Turborepo Showcase](https://turborepo.com/showcase) to learn more.
3939

4040
## Updates
4141

cli/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# `turbo` CLI
22

3-
Visit https://turbo.build/repo to view the full documentation.
3+
Visit https://turborepo.com/repo to view the full documentation.

crates/turborepo-env/src/platform.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ impl PlatformEnv {
6464
let docs_message = color!(
6565
color_config,
6666
UNDERLINE,
67-
"https://turbo.build/docs/platform-environment-variables"
67+
"https://turborepo.com/docs/platform-environment-variables"
6868
);
6969

7070
match ci {

crates/turborepo-errors/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ use thiserror::Error;
1818
/// used.
1919
pub const TURBO_SITE: &str = match option_env!("TURBO_SITE") {
2020
Some(url) => url,
21-
None => "https://turbo.build",
21+
None => "https://turborepo.com",
2222
};
2323

2424
/// A little helper to convert from biome's syntax errors to miette.

crates/turborepo-lib/src/cli/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ pub enum Command {
653653
/// Use the given selector to specify package(s) to act as
654654
/// entry points. The syntax mirrors pnpm's syntax, and
655655
/// additional documentation and examples can be found in
656-
/// turbo's documentation https://turbo.build/docs/reference/command-line-reference/run#--filter
656+
/// turbo's documentation https://turborepo.com/docs/reference/command-line-reference/run#--filter
657657
#[clap(short = 'F', long, group = "scope-filter-group")]
658658
filter: Vec<String>,
659659
/// Get insight into a specific package, such as
@@ -895,7 +895,7 @@ pub struct ExecutionArgs {
895895
/// Use the given selector to specify package(s) to act as
896896
/// entry points. The syntax mirrors pnpm's syntax, and
897897
/// additional documentation and examples can be found in
898-
/// turbo's documentation https://turbo.build/docs/reference/command-line-reference/run#--filter
898+
/// turbo's documentation https://turborepo.com/docs/reference/command-line-reference/run#--filter
899899
#[clap(short = 'F', long, group = "scope-filter-group")]
900900
pub filter: Vec<String>,
901901

crates/turborepo-lib/src/commands/link.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ pub(crate) enum SelectedTeam<'a> {
7575
pub(crate) const REMOTE_CACHING_INFO: &str =
7676
"Remote Caching makes your caching multiplayer,\nsharing build outputs and logs between \
7777
developers and CI/CD systems.\n\nBuild and deploy faster.";
78-
pub(crate) const REMOTE_CACHING_URL: &str = "https://turbo.build/docs/core-concepts/remote-caching";
78+
pub(crate) const REMOTE_CACHING_URL: &str =
79+
"https://turborepo.com/docs/core-concepts/remote-caching";
7980

8081
/// Verifies that caching status for a team is enabled, or prompts the user to
8182
/// enable it.

crates/turborepo-lib/src/commands/telemetry.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ fn log_status(config: TelemetryConfig, base: &CommandBase) {
2525
);
2626
}
2727
}
28-
println!("Learn more: https://turbo.build/docs/telemetry");
28+
println!("Learn more: https://turborepo.com/docs/telemetry");
2929
}
3030

3131
fn log_error(message: &str, error: &str, base: &CommandBase) {

crates/turborepo-lib/src/config/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ pub enum Error {
7474
#[error(transparent)]
7575
PackageJson(#[from] turborepo_repository::package_json::Error),
7676
#[error(
77-
"Could not find turbo.json or turbo.jsonc.\nFollow directions at https://turbo.build/docs \
77+
"Could not find turbo.json or turbo.jsonc.\nFollow directions at https://turborepo.com/docs \
7878
to create one."
7979
)]
8080
NoTurboJSON,

crates/turborepo-lib/src/diagnostics.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ impl Diagnostic for GitDaemonDiagnostic {
221221
if fsmonitor.trim() != "true" || untrackedcache.trim() != "true" {
222222
chan.log_line("Git FS Monitor not configured".to_string())
223223
.await;
224-
chan.log_line( "For more information, see https://turbo.build/docs/reference/command-line-reference/scan#fs-monitor".to_string()).await;
224+
chan.log_line( "For more information, see https://turborepo.com/docs/reference/command-line-reference/scan#fs-monitor".to_string()).await;
225225
let Some(resp) = chan
226226
.request(
227227
"Configure it for this repo now?".to_string(),
@@ -372,7 +372,7 @@ impl Diagnostic for LSPDiagnostic {
372372
Ok(None) => {
373373
chan.log_line("Unable to find LSP instance".to_string())
374374
.await;
375-
chan.log_line( "For more information, see https://turbo.build/docs/reference/command-line-reference/scan#lsp".to_string()).await;
375+
chan.log_line( "For more information, see https://turborepo.com/docs/reference/command-line-reference/scan#lsp".to_string()).await;
376376
chan.failed("Turborepo Extension is not running".to_string())
377377
.await;
378378
}

crates/turborepo-telemetry/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Any changes made here should also be made to that package as well.
77
## Overview
88

99
This crate provides a way to optionally record anonymous usage data.
10-
This information is used to shape the Turborepo roadmap and prioritize features. You can learn more, including how to opt-out if you'd not like to participate in this anonymous program, by visiting the [documentation](https://turbo.build/docs/telemetry):
10+
This information is used to shape the Turborepo roadmap and prioritize features. You can learn more, including how to opt-out if you'd not like to participate in this anonymous program, by visiting the [documentation](https://turborepo.com/docs/telemetry):
1111

1212
## Events
1313

crates/turborepo-telemetry/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ impl TelemetryConfig {
167167
color_config,
168168
GREY,
169169
"{}",
170-
"https://turbo.build/docs/telemetry"
170+
"https://turborepo.com/docs/telemetry"
171171
)
172172
),
173173
);

crates/turborepo-telemetry/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Turborepo's telemetry library. Handles sending anonymous telemetry events to
22
//! the Vercel API in the background.
33
//!
4-
//! More detail is available at https://turbo.build/docs/telemetry.
4+
//! More detail is available at https://turborepo.com/docs/telemetry.
55
66
#![feature(error_generic_member_access)]
77

crates/turborepo-updater/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ impl Registry for NPMRegistry {
6969
let split_name: Vec<&str> = full_name.split('/').collect();
7070
let name = split_name[1];
7171
let url = format!(
72-
"https://turbo.build/api/binaries/version?name={name}&tag={tag}",
72+
"https://turborepo.com/api/binaries/version?name={name}&tag={tag}",
7373
name = name,
7474
tag = tag
7575
);

docs/site/app/_components/footer.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,11 @@ const navigation = {
9090
{ name: "Vercel", href: "https://vercel.com" },
9191
{
9292
name: "Open Source Software",
93-
href: "https://vercel.com/oss?utm_source=turbo.build&utm_medium=referral&utm_campaign=footer-ossLink",
93+
href: "https://vercel.com/oss?utm_source=turborepo.com&utm_medium=referral&utm_campaign=footer-ossLink",
9494
},
9595
{
9696
name: "Contact Sales",
97-
href: "https://vercel.com/solutions/turborepo?utm_source=turbo.build&utm_medium=referral&utm_campaign=footer-enterpriseLink",
97+
href: "https://vercel.com/solutions/turborepo?utm_source=turborepo.com&utm_medium=referral&utm_campaign=footer-enterpriseLink",
9898
},
9999
{ name: "X", href: "https://x.com/vercel" },
100100
],
@@ -183,7 +183,7 @@ function FooterContent(): JSX.Element {
183183
<div>
184184
<a
185185
className="text-current"
186-
href="https://vercel.com?utm_source=turbo.build&utm_medium=referral&utm_campaign=footer-logoLink"
186+
href="https://vercel.com?utm_source=turborepo.com&utm_medium=referral&utm_campaign=footer-logoLink"
187187
rel="noopener noreferrer"
188188
target="_blank"
189189
title="vercel.com homepage"

docs/site/app/api/og/route.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export async function GET(req: NextApiRequest): Promise<Response> {
118118
return new Response(undefined, {
119119
status: 302,
120120
headers: {
121-
Location: "https://turbo.build/og-image.png",
121+
Location: "https://turborepo.com/og-image.png",
122122
},
123123
});
124124
}

docs/site/components/feedback-widget.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export function FeedbackWidget() {
3535
body: JSON.stringify({
3636
url:
3737
window.location.hostname === "localhost"
38-
? `https://turbo.build/dev-mode${window.location.pathname}`
38+
? `https://turborepo.com/dev-mode${window.location.pathname}`
3939
: window.location.toString(),
4040
note: feedback,
4141
emotion: selectedEmoji,

docs/site/components/nav/footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const FOOTER_ITEMS = {
2626
community: [
2727
{ href: "https://github.com/vercel/turborepo", label: "GitHub" },
2828
{ href: "https://community.vercel.com/tag/turborepo", label: "Community" },
29-
{ href: "https://bsky.app/profile/turbo.build", label: "Bluesky" },
29+
{ href: "https://bsky.app/profile/turborepo.com", label: "Bluesky" },
3030
{ href: "https://x.com/turborepo", label: "X" },
3131
],
3232
};

docs/site/components/nav/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export const PAGES = [
4040
name: "showcase",
4141
},
4242
{
43-
href: "https://vercel.com/contact/sales?utm_source=turbo.build&utm_medium=referral&utm_campaign=header-enterpriseLink",
43+
href: "https://vercel.com/contact/sales?utm_source=turborepo.com&utm_medium=referral&utm_campaign=header-enterpriseLink",
4444
tooltip: "Enterprise",
4545
name: "enterprise",
4646
},

docs/site/content/blog/joining-vercel.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { Authors } from '#/components/authors';
1212

1313
<Authors authors={['jaredpalmer']} />
1414

15-
Turborepo has been acquired by Vercel and the Turborepo CLI is now open-source! Also, Turborepo now provides zero-config remote caching through [Vercel](https://vercel.com/?utm_source=turbo.build&utm_medium=referral&utm_campaign=docs-link)!
15+
Turborepo has been acquired by Vercel and the Turborepo CLI is now open-source! Also, Turborepo now provides zero-config remote caching through [Vercel](https://vercel.com/?utm_source=turborepo.com&utm_medium=referral&utm_campaign=docs-link)!
1616

1717
beta.turborepo.com and its remote caching service will be shut down on January 15th, 2022 and older versions of the `turbo` CLI will not be installable.
1818

docs/site/content/blog/turbo-1-1-0.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Since releasing Turborepo v1.0 in mid-December, we've seen incredible adoption:
1818
- 70k+ weekly npm downloads
1919
- 65+ OSS contributors
2020
- In production at [Vercel](https://github.com/vercel/next.js), [AWS](https://github.com/aws-amplify/amplify-ui), [PayPal](https://x.com/jaredpalmer/status/1485617973477978121), [Twilio](https://github.com/twilio-labs/function-templates), [Contentful](https://github.com/contentful/forma-36), [Miro](https://github.com/miroapp/app-examples), [Framer](https://github.com/framer/motion), [Discord.js](https://github.com/discordjs/discord.js), [Rocket.chat](https://github.com/RocketChat/fuselage), [Astro.build](https://github.com/withastro/astro)
21-
- 585+ members of the [Turborepo Community Discord](https://turbo.build/discord)
21+
- 585+ members of the [Turborepo Community Discord](https://turborepo.com/discord)
2222

2323
![Weekly npm downloads of `turbo`](/images/blog/turbo-1-1-0/turborepo-weekly-npm-downloads.png)
2424

docs/site/content/blog/turbo-1-10-0.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ To ensure that Turborepo includes these variables in your hash, use the `dotEnv`
8787

8888
```json title="./turbo.json"
8989
{
90-
"$schema": "https://turbo.build/schema.json",
90+
"$schema": "https://turborepo.com/schema.json",
9191
"globalDotEnv": [".env"],
9292
"pipeline": {
9393
"build": {
@@ -132,7 +132,7 @@ With wildcards, you can now specify patterns of variables to include in your has
132132

133133
```json title="./turbo.json"
134134
{
135-
"$schema": "https://turbo.build/schema.json",
135+
"$schema": "https://turborepo.com/schema.json",
136136
"pipeline": {
137137
"build": {
138138
"env": ["ACME_*"]

docs/site/content/blog/turbo-1-12-0.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,11 @@ This microsyntax allows you to use the Turborepo defaults you're used to while a
113113

114114
Turborepo was released almost two years ago, and `turbo` has developed considerably over the past two years. As the community has grown, the value of your feedback is immeasurable in helping us stay focused on what matters most to Turborepo users.
115115

116-
Until now, our feedback gathering process has been manual, slow, and error prone. While we will always highly appreciate users who file [GitHub Issues](https://github.com/vercel/turbo/issues), speak to us in [GitHub Discussions](https://github.com/vercel/turbo/discussions), and chat with the community in [Discord](https://turbo.build/discord), this feedback only captures the sentiment of a small corner of the Turboverse.
116+
Until now, our feedback gathering process has been manual, slow, and error prone. While we will always highly appreciate users who file [GitHub Issues](https://github.com/vercel/turbo/issues), speak to us in [GitHub Discussions](https://github.com/vercel/turbo/discussions), and chat with the community in [Discord](https://turborepo.com/discord), this feedback only captures the sentiment of a small corner of the Turboverse.
117117

118118
Today, we're introducing a **completely anonymous**, automated approach to feedback to learn more about the ways that the community is using Turborepo. As we continue to iterate on `turbo`, this information will help us ensure performance, confirm stability, design new features, and drive the project's direction.
119119

120-
We're creating the build system of the future and this information will be highly valuable to guide us in that effort. For more information, visit [turbo.build/docs/telemetry](https://turbo.build/docs/telemetry).
120+
We're creating the build system of the future and this information will be highly valuable to guide us in that effort. For more information, visit [turborepo.com/docs/telemetry](https://turborepo.com/docs/telemetry).
121121

122122
If you'd like to opt out of telemetry, run:
123123

docs/site/content/blog/turbo-1-2-0.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Since releasing Turborepo v1.1 in late January, we've seen incredible adoption a
2020
- **6.5k+** [GitHub Stars](https://github.com/vercel/turbo)
2121
- **140k+** weekly npm downloads (doubling since our [last blog post for v1.1](/blog/turbo-1-1-0))
2222
- **95+** OSS contributors
23-
- **900+** members of the [Turborepo Community Discord](https://turbo.build/discord)
23+
- **900+** members of the [Turborepo Community Discord](https://turborepo.com/discord)
2424
- **1.6 years** of Time Saved through Remote Caching on Vercel, saving more than 2.5 months every week
2525

2626
We've further improved ergonomics, observability, and security with Turborepo v1.2 featuring:
@@ -91,7 +91,7 @@ To enable this feature, set the `remoteCache` options in your `turbo.json` confi
9191

9292
```jsonc title="./turbo.json"
9393
{
94-
"$schema": "[https://turbo.build/schema.json](https://turbo.build/schema.json)",
94+
"$schema": "[https://turborepo.com/schema.json](https://turborepo.com/schema.json)",
9595
"remoteCache": {
9696
// Indicates if signature verification is enabled.
9797
"signature": true

docs/site/content/blog/turbo-1-3-0.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Let's assume that the Next.js `docs-site` renders the markdown files from the `.
7272

7373
```jsonc title="./turbo.json"
7474
{
75-
"$schema": "https://turbo.build/schema.json",
75+
"$schema": "https://turborepo.com/schema.json",
7676
"pipeline": {
7777
// ... omitted for brevity
7878
"build": {
@@ -126,7 +126,7 @@ A sample pipeline that defines the root script `check-examples` and opts the roo
126126

127127
```jsonc title="./turbo.json" highlight="20"
128128
{
129-
"$schema": "https://turbo.build/schema.json",
129+
"$schema": "https://turborepo.com/schema.json",
130130
"pipeline": {
131131
"build": {
132132
"dependsOn": ["^build"]
@@ -190,7 +190,7 @@ Since releasing [Turborepo v1.2 in early April](/blog/turbo-1-2-0), we've seen i
190190

191191
- [8.1k+ GitHub Stars](https://github.com/vercel/turbo)
192192
- 275k+ weekly NPM downloads (up ~2x)
193-
- 1,200+ members of the [Turborepo Community Discord](https://turbo.build/discord)
193+
- 1,200+ members of the [Turborepo Community Discord](https://turborepo.com/discord)
194194
- 5.8 years of compute time saved through Remote Caching on Vercel (up ~5x), saving +7 months per week now
195195

196196
Turborepo is the result of the combined work of over 136 contributors including our core team.

docs/site/content/blog/turbo-1-4-0.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Based on your feedback and suggestions, we've created new examples to integrate
123123

124124
## Community
125125

126-
Since releasing [Turborepo v1.3 in June](https://turbo.build/blog/turbo-1-3-0), we've seen incredible adoption and community growth:
126+
Since releasing [Turborepo v1.3 in June](https://turborepo.com/blog/turbo-1-3-0), we've seen incredible adoption and community growth:
127127

128128
- [8.65k+ GitHub Stars](https://github.com/vercel/turbo)
129129
- 365k weekly NPM downloads, up 2x since late April

docs/site/content/blog/turbo-1-7-0.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ turbo build --output-logs=errors-only
142142

143143
## Community
144144

145-
Since releasing [Turborepo v1.6](/blog/turbo-1-6-0) and merging with [Turbopack](https://turbo.build/pack), we've seen incredible adoption and community growth:
145+
Since releasing [Turborepo v1.6](/blog/turbo-1-6-0) and merging with [Turbopack](https://turborepo.com/pack), we've seen incredible adoption and community growth:
146146

147147
- [18.7k+ GitHub Stars](https://github.com/vercel/turbo)
148148
- [750k weekly NPM downloads](https://www.npmjs.com/package/turbo)

docs/site/content/blog/turbo-2-0.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Visit [the upgrading guide](/docs/crafting-your-repository/upgrading#upgrading-t
3030

3131
## New terminal UI
3232

33-
In [Turborepo 1.13](https://turbo.build/blog/turbo-1-13-0), we released an experimental interface to learn how a refined terminal UI could improve development velocity. Through [the RFC process](https://github.com/vercel/turbo/discussions/7802), we were able to work with the community on designing a revamped local experience, driven by your feedback. Thank you to those who participated.
33+
In [Turborepo 1.13](https://turborepo.com/blog/turbo-1-13-0), we released an experimental interface to learn how a refined terminal UI could improve development velocity. Through [the RFC process](https://github.com/vercel/turbo/discussions/7802), we were able to work with the community on designing a revamped local experience, driven by your feedback. Thank you to those who participated.
3434

3535
Today, we’re releasing the new UI as stable, along with the highly requested features that it enables.
3636

docs/site/content/blog/turbo-2-1-0.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ turbo ls --affected
107107

108108
## Terminal UI Improvements
109109

110-
In Turborepo 2.0, we released a [new terminal UI](https://turbo.build/blog/turbo-2-0#new-terminal-ui) to improve clarity for logs and allow for interactive tasks in local development. We heard your feedback, and prioritized polishing this UI, releasing improvements in patches to 2.0 and in this 2.1 release:
110+
In Turborepo 2.0, we released a [new terminal UI](https://turborepo.com/blog/turbo-2-0#new-terminal-ui) to improve clarity for logs and allow for interactive tasks in local development. We heard your feedback, and prioritized polishing this UI, releasing improvements in patches to 2.0 and in this 2.1 release:
111111

112112
- Highlighting of logs for copying to clipboard ([PR](https://github.com/vercel/turborepo/pull/8713))
113113
- Search through task list ([PR](https://github.com/vercel/turborepo/pull/9042))

0 commit comments

Comments
 (0)