add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

28
pages.zh/common/nx.md Normal file
View File

@@ -0,0 +1,28 @@
# nx
> 管理 `nx` 工作区。
> 更多信息:<https://nx.dev/l/r/getting-started/nx-cli>。
- 构建特定项目:
`nx build {{project}}`
- 测试特定项目:
`nx test {{project}}`
- 在特定项目上执行目标:
`nx run {{project}}:{{target}}`
- 在多个项目上执行目标:
`nx run-many --target {{target}} --projects {{project1}},{{project2}}`
- 在工作区中的所有项目上执行目标:
`nx run-many --target {{target}} --all`
- 仅在已更改的项目上执行目标:
`nx affected --target {{target}}`