这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Turborepo is a high-performance build system for JavaScript and TypeScript codeb

## Getting Started

Visit https://turborepo.com/repo to get started with Turborepo.
Visit https://turborepo.com to get started with Turborepo.

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion cli/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# `turbo` CLI

Visit https://turborepo.com/repo to view the full documentation.
Visit https://turborepo.com to view the full documentation.
4 changes: 2 additions & 2 deletions examples/design-system/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This is a community-maintained example. If you experience a problem, please subm

This guide explains how to use a React design system starter powered by:

- 🏎 [Turborepo](https://turborepo.com/repo) — High-performance build system for Monorepos
- 🏎 [Turborepo](https://turborepo.com) — High-performance build system for Monorepos
- 🚀 [React](https://reactjs.org/) — JavaScript library for user interfaces
- 🛠 [Tsup](https://github.com/egoist/tsup) — TypeScript bundler powered by esbuild
- 📖 [Storybook](https://storybook.js.org/) — UI component environment powered by Vite
Expand Down Expand Up @@ -35,7 +35,7 @@ npx create-turbo@latest -e design-system

## Turborepo

[Turborepo](https://turborepo.com/repo) is a high-performance build system for JavaScript and TypeScript codebases. It was designed after the workflows used by massive software engineering organizations to ship code at scale. Turborepo abstracts the complex configuration needed for monorepos and provides fast, incremental builds with zero-configuration remote caching.
[Turborepo](https://turborepo.com) is a high-performance build system for JavaScript and TypeScript codebases. It was designed after the workflows used by massive software engineering organizations to ship code at scale. Turborepo abstracts the complex configuration needed for monorepos and provides fast, incremental builds with zero-configuration remote caching.

Using Turborepo simplifies managing your design system monorepo, as you can have a single lint, build, test, and release process for all packages. [Learn more](https://vercel.com/blog/monorepos-are-changing-how-teams-build-software) about how monorepos improve your development workflow.

Expand Down
2 changes: 1 addition & 1 deletion examples/kitchen-sink/apps/admin/src/app/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function App() {
<CounterButton />
<p className="description">
Built With{" "}
<Link href="https://turborepo.com/repo" newTab>
<Link href="https://turborepo.com" newTab>
Turborepo
</Link>
{" & "}
Expand Down
2 changes: 1 addition & 1 deletion examples/kitchen-sink/apps/blog/app/routes/_index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function Index() {
</h1>
<CounterButton />
<p className="description">
Built With <Link href="https://turborepo.com/repo">Turborepo</Link>
Built With <Link href="https://turborepo.com">Turborepo</Link>
{" & "}
<Link href="https://remix.run/">Remix</Link>
</p>
Expand Down
2 changes: 1 addition & 1 deletion examples/kitchen-sink/apps/storefront/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function Store() {
<CounterButton />
<p className="description">
Built With{" "}
<Link href="https://turborepo.com/repo" newTab>
<Link href="https://turborepo.com" newTab>
Turborepo
</Link>
{" & "}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe("Link", () => {
it("renders without crashing", () => {
const div = document.createElement("div");
const root = createRoot(div);
root.render(<Link href="https://turborepo.com/repo">Turborepo Docs</Link>);
root.render(<Link href="https://turborepo.com">Turborepo Docs</Link>);
root.unmount();
});
});
4 changes: 2 additions & 2 deletions packages/create-turbo/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Welcome to Turborepo

[Turborepo](https://turborepo.com/repo) is a high-performance monorepo build-system for modern JavaScript and TypeScript codebases.
[Turborepo](https://turborepo.com) is a high-performance monorepo build-system for modern JavaScript and TypeScript codebases.

To get started, open a new shell and run:

Expand All @@ -10,7 +10,7 @@ npx create-turbo@latest

Then follow the prompts you see in your terminal.

For more information about Turborepo, [visit turborepo.com/repo](https://turborepo.com/repo) and follow us on X ([@turborepo](https://x.com/turborepo))!
For more information about Turborepo, [visit turborepo.com](https://turborepo.com) and follow us on X ([@turborepo](https://x.com/turborepo))!

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion packages/create-turbo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "create-turbo",
"version": "2.5.1-canary.2",
"description": "Create a new Turborepo",
"homepage": "https://turborepo.com/repo",
"homepage": "https://turborepo.com",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-turbo/src/commands/create/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ export async function create(
`${packageManagerMeta.executable} turbo login`
)}`
);
logger.log(" - Learn more: https://turborepo.com/repo/remote-cache");
logger.log(" - Learn more: https://turborepo.com/remote-cache");
logger.log();
logger.log("- Run commands with Turborepo:");
availableScripts
Expand Down
2 changes: 1 addition & 1 deletion packages/turbo-codemod/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@turbo/codemod",
"version": "2.5.1-canary.2",
"description": "Provides Codemod transformations to help upgrade your Turborepo codebase when a feature is deprecated.",
"homepage": "https://turborepo.com/repo",
"homepage": "https://turborepo.com",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/turbo-gen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@turbo/gen",
"version": "2.5.1-canary.2",
"description": "Extend a Turborepo",
"homepage": "https://turborepo.com/repo",
"homepage": "https://turborepo.com",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/turbo-ignore/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "turbo-ignore",
"version": "2.5.1-canary.2",
"description": "",
"homepage": "https://turborepo.com/repo",
"homepage": "https://turborepo.com",
"keywords": [],
"author": "Jared Palmer",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/turbo-releaser/src/native.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ async function generateNativePackage({
description: `The ${os}-${arch} binary for turbo, a monorepo build system.`,
repository: "https://github.com/vercel/turborepo",
bugs: "https://github.com/vercel/turborepo/issues",
homepage: "https://turborepo.com/repo",
homepage: "https://turborepo.com",
license: "MIT",
os: [nodeOSLookup[os]],
cpu: [arch],
Expand Down
2 changes: 1 addition & 1 deletion packages/turbo-repository/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.1-canary.15",
"description": "",
"bugs": "https://github.com/vercel/turborepo/issues",
"homepage": "https://turborepo.com/repo",
"homepage": "https://turborepo.com",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/turbo-repository/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.1",
"description": "",
"bugs": "https://github.com/vercel/turborepo/issues",
"homepage": "https://turborepo.com/repo",
"homepage": "https://turborepo.com",
"scripts": {
"build": "bash scripts/build.sh --dts ../js/index.d.ts",
"build:release": "bash scripts/build.sh --release",
Expand Down
2 changes: 1 addition & 1 deletion packages/turbo-telemetry/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0",
"private": true,
"description": "",
"homepage": "https://turborepo.com/repo",
"homepage": "https://turborepo.com",
"keywords": [],
"author": "Vercel",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/turbo-test-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0",
"private": true,
"description": "",
"homepage": "https://turborepo.com/repo",
"homepage": "https://turborepo.com",
"keywords": [],
"author": "Vercel",
"main": "src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/turbo-types/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ TypeScript types for `turbo.json`

---

For more information about Turborepo, visit [turborepo.com/repo](https://turborepo.com/repo) and follow us on X ([@turborepo](https://x.com/turborepo))!
For more information about Turborepo, visit [turborepo.com](https://turborepo.com) and follow us on X ([@turborepo](https://x.com/turborepo))!
2 changes: 1 addition & 1 deletion packages/turbo-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@turbo/types",
"version": "2.5.1-canary.2",
"description": "Turborepo types",
"homepage": "https://turborepo.com/repo",
"homepage": "https://turborepo.com",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/turbo-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0",
"private": true,
"description": "",
"homepage": "https://turborepo.com/repo",
"homepage": "https://turborepo.com",
"keywords": [],
"author": "Vercel",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/turbo-workspaces/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ if (project.packageManager !== "pnpm") {

---

For more information about Turborepo, visit [turborepo.com/repo](https://turborepo.com/repo) and follow us on X ([@turborepo](https://x.com/turborepo))!
For more information about Turborepo, visit [turborepo.com](https://turborepo.com) and follow us on X ([@turborepo](https://x.com/turborepo))!
2 changes: 1 addition & 1 deletion packages/turbo-workspaces/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@turbo/workspaces",
"version": "2.5.1-canary.2",
"description": "Tools for working with package managers",
"homepage": "https://turborepo.com/repo",
"homepage": "https://turborepo.com",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/turbo/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<a href="https://turborepo.com/repo">
<a href="https://turborepo.com">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/4060187/196936123-f6e1db90-784d-4174-b774-92502b718836.png">
<img src="https://user-images.githubusercontent.com/4060187/196936104-5797972c-ab10-4834-bd61-0d1e5f442c9c.png" height="128">
Expand Down
2 changes: 1 addition & 1 deletion packages/turbo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Turborepo is a high-performance build system for JavaScript and TypeScript codebases.",
"repository": "https://github.com/vercel/turborepo",
"bugs": "https://github.com/vercel/turborepo/issues",
"homepage": "https://turborepo.com/repo",
"homepage": "https://turborepo.com",
"license": "MIT",
"main": "./bin/turbo",
"scripts": {
Expand Down
Loading