这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
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
14 changes: 13 additions & 1 deletion docs/site/content/repo-docs/reference/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -529,11 +529,23 @@ To enable restarting persistent tasks, set `interruptible` to `true`.

A list of tasks that will be ran alongside this task. This is most useful for long-running tasks that you want to ensure always run at the same time.

```json title="./apps/web/turbo.json"
{
"tasks": {
"dev": {
"with": ["api#dev"],
"persistent": true,
"cache": false
}
}
}
```

## Boundaries

The `boundaries` tag allows you to define rules for the [`boundaries` command](/repo/docs/reference/boundaries).

```jsonc title="./turbo.json"
```json title="./turbo.json"
{
"boundaries": {}
}
Expand Down
Loading