Skip to content

Commit

Permalink
updates default of daemon
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitropoulos committed Aug 21, 2024
1 parent 6b3b861 commit dcc630e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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 @@ -131,7 +131,7 @@ Specify the filesystem cache directory.

### `daemon`

Default: `false`
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.

Expand Down
4 changes: 2 additions & 2 deletions packages/turbo-types/schemas/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,15 @@
},
"cacheDir": {
"$ref": "#/definitions/RelativeUnixPath",
"description": "Specify the filesystem cache directory.\n\nDocumentation: https://turbo.build/repo/docs/reference/configuration#tasks"
"description": "Specify the filesystem cache directory.\n\nDocumentation: https://turbo.build/repo/docs/reference/configuration#cachedir"
},
"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"
},
"envMode": {
"$ref": "#/definitions/EnvMode",
"description": "Turborepo's Environment Modes allow you to control which environment variables are available to a task at runtime:\n\n- **Strict Mode**: Filter environment variables to only those that are specified in the `env` and `globalEnv` keys in `turbo.json`.\n- **Loose Mode**: Allow all environment variables for the process to be available.\n\nDocumentation: https://turbo.build/repo/docs/crafting-your-repository/using-environment-variables#environment-modes"
"description": "Turborepo's Environment Modes allow you to control which environment variables are available to a task at runtime:\n\n- `\"strict\"`: Filter environment variables to only those that are specified in the `env` and `globalEnv` keys in `turbo.json`.\n- `\"loose\"`: Allow all environment variables for the process to be available.\n\nDocumentation: https://turbo.build/repo/docs/reference/configuration#envmode"
}
},
"additionalProperties": false,
Expand Down
4 changes: 2 additions & 2 deletions packages/turbo-types/schemas/schema.v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,15 @@
},
"cacheDir": {
"$ref": "#/definitions/RelativeUnixPath",
"description": "Specify the filesystem cache directory.\n\nDocumentation: https://turbo.build/repo/docs/reference/configuration#tasks"
"description": "Specify the filesystem cache directory.\n\nDocumentation: https://turbo.build/repo/docs/reference/configuration#cachedir"
},
"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"
},
"envMode": {
"$ref": "#/definitions/EnvMode",
"description": "Turborepo's Environment Modes allow you to control which environment variables are available to a task at runtime:\n\n- **Strict Mode**: Filter environment variables to only those that are specified in the `env` and `globalEnv` keys in `turbo.json`.\n- **Loose Mode**: Allow all environment variables for the process to be available.\n\nDocumentation: https://turbo.build/repo/docs/crafting-your-repository/using-environment-variables#environment-modes"
"description": "Turborepo's Environment Modes allow you to control which environment variables are available to a task at runtime:\n\n- `\"strict\"`: Filter environment variables to only those that are specified in the `env` and `globalEnv` keys in `turbo.json`.\n- `\"loose\"`: Allow all environment variables for the process to be available.\n\nDocumentation: https://turbo.build/repo/docs/reference/configuration#envmode"
}
},
"additionalProperties": false,
Expand Down

0 comments on commit dcc630e

Please sign in to comment.