cleanup(devkit): correct description of disabling daemon inside createProjectGraph async jsdoc (#18627)

This commit is contained in:
Craigory Coppola 2023-08-17 13:14:58 -04:00 committed by GitHub
parent 0bb6ab896e
commit 0b84bbcc75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ Nx will compute it in the current process if:
- It is running in the docker container.
- The daemon process is disabled because of the previous error when starting the daemon.
- `NX_DAEMON` is set to `false`.
- `useDaemon` is set to false in `nx.json`
- `useDaemonProcess` is set to false in the options of the tasks runner inside `nx.json`
`NX_DAEMON` env variable takes precedence:

View File

@ -120,7 +120,7 @@ function handleProjectGraphError(opts: { exitOnError: boolean }, e) {
* * It is running in the docker container.
* * The daemon process is disabled because of the previous error when starting the daemon.
* * `NX_DAEMON` is set to `false`.
* * `useDaemon` is set to false in `nx.json`
* * `useDaemonProcess` is set to false in the options of the tasks runner inside `nx.json`
*
* `NX_DAEMON` env variable takes precedence:
* * If it is set to true, the daemon will always be used.