这是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 CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Thank you for your interest in contributing to Turborepo!

## General dependencies

You will need to have these dependences installed on your machine to work on this repository:
You will need to have these dependencies installed on your machine to work on this repository:

- [Rust](https://www.rust-lang.org/tools/install) ([Repository toolchain](https://github.com/vercel/turborepo/blob/main/rust-toolchain.toml))
- [NodeJS](https://nodejs.org/en) v20
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Recursive `turbo` invocations
description: Learn more about errors with recursive sccripts and tasks in Turborepo.
description: Learn more about errors with recursive scripts and tasks in Turborepo.
---

## Why this error occurred
Expand Down
2 changes: 1 addition & 1 deletion docs/site/content/repo-docs/reference/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ An allowlist of environment variables that should be made available to this task
{
"tasks": {
"build": {
// Values will available within `build` scripts
// Values will be available within `build` scripts
"passThroughEnv": ["AWS_SECRET_KEY", "GITHUB_TOKEN"]
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/site/content/repo-docs/reference/run.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Specify caching sources for the run. Accepts a comma-separated list of options:
- `local`: Use the local filesystem cache
- `remote`: Use the Remote Cache

When an a caching source is omitted, reading and writing are both disabled.
When a caching source is omitted, reading and writing are both disabled.

Cache sources use the following values:

Expand Down
2 changes: 1 addition & 1 deletion docs/site/content/repo-docs/reference/turbo-codemod.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Codemods are transformations that run on your codebase programmatically. This al

## Usage

First, ensure that you've ran your package manager's install command.
First, ensure that you've run your package manager's install command.

```bash title="Terminal"
npx @turbo/codemod [transform] [path] [--dry] [--print]
Expand Down
2 changes: 1 addition & 1 deletion packages/turbo-codemod/src/transforms/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export type Transformer = {

## Writing a Transform

Transforms are ran using the [TransformRunner](../runner/Runner.ts). This class is designed to make writing transforms as simple as possible by abstracting away all of the boilerplate that determines what should be logged, saved, or output as a result.
Transforms are run using the [TransformRunner](../runner/Runner.ts). This class is designed to make writing transforms as simple as possible by abstracting away all of the boilerplate that determines what should be logged, saved, or output as a result.

To use the TransformRunner:

Expand Down
Loading