NPM 不支持 PnP

NPM doesn't support PnP

我正在尝试使用 pnpm 和 create-react-app v2 如下

npx create-react-app my-app --use-pnp

但它给了我以下警告

NPM doesn't support PnP.
Falling back to the regular installs.

我应该怎么做才能将 pnpm 与 create-react-app 一起使用?

我已经使用 npm 在全球安装了 pnpm。

pnp 是 Yarn 的一项功能,您需要在系统上安装最新版本的 yarn 才能使用它(至少 Yarn 1.12)。

尝试

yarn create react-app project-name --use-pnp

并确保 yarn -v >= 1.12