0

我正在使用工作区尝试https://pnpm.io/,但我似乎无法像使用 Yarn 一样在特定工作区中安装包和运行命令。

使用纱线,我可以这样做,例如:

# adds express to the server workspace
yarn workspace server add express

# run the build script in the common workspace
yarn workspace common run build

如何使用 pnpm CLI 实现相同的功能?

4

1 回答 1

1

是的,请参阅https://pnpm.io/filtering

# adds express to the server workspace
pnpm --filter server add express

# run the build script in the common workspace
pnpm --filter common run build

而不是--filter你也可以使用-F.

于 2022-02-27T18:18:25.747 回答