Skip to content

Commit

Permalink
update daemon copy per review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitropoulos committed Aug 21, 2024
1 parent dcc630e commit 1841615
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/repo-docs/reference/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ Specify the filesystem cache directory.

Default: `true`

Turbo can run a background process to pre-calculate values used for determining work that needs to be done. This standalone process (daemon) is an optimization, and not required for proper functioning of turbo.
Turborepo runs a background process to pre-calculate some expensive operations. This standalone process (daemon) is a performance optimization, and not required for proper functioning of `turbo`.

```jsonc title="./turbo.json"
{
Expand Down
2 changes: 1 addition & 1 deletion packages/turbo-types/schemas/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
},
"daemon": {
"type": "boolean",
"description": "Turbo can run a background process to pre-calculate values used for determining work that needs to be done. This standalone process (daemon) is an optimization, and not required for proper functioning of turbo.\n\nDocumentation: https://turbo.build/repo/docs/reference/configuration#daemon"
"description": "Turborepo runs a background process to pre-calculate some expensive operations. This standalone process (daemon) is a performance optimization, and not required for proper functioning of `turbo`.\n\nDocumentation: https://turbo.build/repo/docs/reference/configuration#daemon"
},
"envMode": {
"$ref": "#/definitions/EnvMode",
Expand Down
2 changes: 1 addition & 1 deletion packages/turbo-types/schemas/schema.v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
},
"daemon": {
"type": "boolean",
"description": "Turbo can run a background process to pre-calculate values used for determining work that needs to be done. This standalone process (daemon) is an optimization, and not required for proper functioning of turbo.\n\nDocumentation: https://turbo.build/repo/docs/reference/configuration#daemon"
"description": "Turborepo runs a background process to pre-calculate some expensive operations. This standalone process (daemon) is a performance optimization, and not required for proper functioning of `turbo`.\n\nDocumentation: https://turbo.build/repo/docs/reference/configuration#daemon"
},
"envMode": {
"$ref": "#/definitions/EnvMode",
Expand Down
2 changes: 1 addition & 1 deletion packages/turbo-types/src/types/config-v2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export interface RootSchema extends BaseSchema {
cacheDir?: RelativeUnixPath;

/**
* Turbo can run a background process to pre-calculate values used for determining work that needs to be done. This standalone process (daemon) is an optimization, and not required for proper functioning of turbo.
* Turborepo runs a background process to pre-calculate some expensive operations. This standalone process (daemon) is a performance optimization, and not required for proper functioning of `turbo`.
*
* Documentation: https://turbo.build/repo/docs/reference/configuration#daemon
*
Expand Down

0 comments on commit 1841615

Please sign in to comment.