2

我正在尝试将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。

4

2 回答 2

4

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

于 2018-10-04T11:14:51.747 回答
2

尝试

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

并确保yarn -v>= 1.12

于 2018-10-22T16:07:10.253 回答