Skip to content

Commit

Permalink
docs: fixing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
kettei-sproutty committed Jun 25, 2024
1 parent 00793fe commit a6da2cf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/repo-docs/reference/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -107,21 +107,21 @@ In the example below, we've defined three tasks under the `tasks` key: `build`,

```jsonc title="./turbo.json"
{
"$schema": "https://turbo.build/schema.json"
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
},
"test": {
"outputs": ["coverage/**"],
"dependsOn": ["build"],
"dependsOn": ["build"]
},
"dev": {
"cache": false,
"persistent": true,
},
},
"persistent": true
}
}
}
```

Expand Down

0 comments on commit a6da2cf

Please sign in to comment.