Skip to content

Commit

Permalink
docs: Clarify that TURBO_FORCE is a boolean. (#9380)
Browse files Browse the repository at this point in the history
### Description

According to some user feedback, it was unclear that `TURBO_FORCE`
accepts a boolean. Clarifying that here.
  • Loading branch information
anthonyshew authored Nov 5, 2024
1 parent 062874a commit 7c9731b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/repo-docs/reference/system-environment-variables.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ System environment variables are always overridden by flag values provided direc
| `TURBO_CI_VENDOR_ENV_KEY` | Set a prefix for environment variables that you want **excluded** from [Framework Inference](/repo/docs/crafting-your-repository/using-environment-variables#framework-inference). **NOTE**: This does not need to be set by the user and should be configured automatically by supported platforms. |
| `TURBO_DANGEROUSLY_DISABLE_PACKAGE_MANAGER_CHECK` | Disable checking the `packageManager` field in `package.json`. You may run into [errors and unexpected caching behavior](/repo/docs/reference/run#--dangerously-disable-package-manager-check) when disabling this check. Use `true` or `1` to disable. |
| `TURBO_DOWNLOAD_LOCAL_ENABLED` | Enables global `turbo` to install the correct local version if one is not found. |
| `TURBO_FORCE` | Always force all tasks to run in full, opting out of all caching. |
| `TURBO_FORCE` | Set to `true` to force all tasks to run in full, opting out of all caching. |
| `TURBO_GLOBAL_WARNING_DISABLED` | Disable warning when global `turbo` cannot find a local version to use. |
| `TURBO_PRINT_VERSION_DISABLED` | Disable printing the version of `turbo` that is being executed. |
| `TURBO_LOG_ORDER` | Set the [log order](/repo/docs/reference/run#--log-order-option). Allowed values are `grouped` and `default`. |
Expand All @@ -32,7 +32,7 @@ System environment variables are always overridden by flag values provided direc
| `TURBO_REMOTE_ONLY` | Always ignore the local filesystem cache for all tasks. |
| `TURBO_RUN_SUMMARY` | Generate a [Run Summary](/repo/docs/reference/run#--summarize) when you run tasks. |
| `TURBO_SCM_BASE` | Base used by `--affected` when calculating what has changed from `base...head` |
| `TURBO_SCM_HEAD` | Head used by `--affected` when calculating what has changed from `base...head` |
| `TURBO_SCM_HEAD` | Head used by `--affected` when calculating what has changed from `base...head` |
| `TURBO_TEAM` | The account name associated with your repository. When using [Vercel Remote Cache](https://vercel.com/docs/monorepos/remote-caching#vercel-remote-cache), this is your team's slug. |
| `TURBO_TEAMID` | The account identifier associated with your repository. When using [Vercel Remote Cache](https://vercel.com/docs/monorepos/remote-caching#vercel-remote-cache), this is your team's ID. |
| `TURBO_TELEMETRY_MESSAGE_DISABLED` | Disable the message notifying you that [Telemetry](/repo/docs/telemetry) is enabled. |
Expand Down

0 comments on commit 7c9731b

Please sign in to comment.