pnpm CLI
与 npm 的差别
与 npm 不同,pnpm 会校验所有选项。 例如, pnpm install --target_arch x64
将失败,因为 --target_arch
不是 pnpm install
的有效选项。
但是,某些依赖项可能会使用从 CLI 选项中填充的 npm_config_
环境变量。 在这种情况下,你有以下选择:
- 明确设置环境变量:
npm_config_target_arch=x64 pnpm install
- 使用
--config
来强制使用未知选项:pnpm install --config.target_arch=x64
配置项
-C <path>, --dir <path>
在 <path>
的目录中启动 pnpm ,而不是当前的工作目录。
-w, --workspace-root
Run as if pnpm was started in the root of the workspace instead of the current working directory.