UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

28 lines (21 loc) 342 B
#### Move useDaemonProcess Move the `useDaemonProcess` to the root of `nx.json` #### Sample Code Changes ##### Before ```json title="nx.json" { "tasksRunnerOptions": { "default": { "options": { "useDaemonProcess": false } } } } ``` ##### After ```json title="nx.json" { "useDaemonProcess": false } ```