跳至主要內容
版本:9.x

pnpm-workspace.yaml

pnpm-workspace.yaml 定義 工作區 的根目錄,並讓您納入/排除工作區中的目錄。預設情況下,會納入所有子目錄的所有套件。

例如

pnpm-workspace.yaml
packages:
# all packages in direct subdirs of packages/
- 'packages/*'
# all packages in subdirs of components/
- 'components/**'
# exclude packages that are inside test directories
- '!**/test/**'

根目錄套件會一律納入,即使使用自訂位置萬用字元。