UNPKG

nx

Version:

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

32 lines (21 loc) 370 B
#### Sample Code Changes Add `.nx/cache` to the `.gitignore` file. ##### Before ```text title=".gitignore" node_modules ``` ##### After ```text title=".gitignore" {2} node_modules .nx/cache ``` Add `.nx/cache` to the `.prettierignore` file. ##### Before ```ts title=".prettierignore" /dist ``` ##### After ```ts title=".prettierignore" {2} /dist .nx/cache ```