pnpm-workspace.yaml
pnpm-workspace.yaml
定义 workspace 的根目录,使你能够在工作区中包含/排除目录。默认情况下,包含所有子目录的所有包。
¥pnpm-workspace.yaml
defines the root of the workspace and enables you to
include / exclude directories from the workspace. By default, all packages of
all subdirectories are included.
例如:
¥For example:
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/**'
即使使用自定义位置通配符,根包也始终包含在内。
¥The root package is always included, even when custom location wildcards are used.