Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用了 pnpm install ,它确实对我有用。但是在进行 ProdBuild 时它失败了:
对于之前使用 npm install 和 npm run ProdBuild 的同一个项目,ProdBuild 没有任何问题。但是使用 pnpm 进行产品构建失败了。有人可以帮帮我吗?
我看到你使用 Angular。Angular 项目目前仅在shamefully-hoistis时才有效true。.npmrc您可以在项目的根目录中创建一个文件并将其放在shamefully-hoist=true那里。然后重新安装依赖项pnpm install。
shamefully-hoist
true
.npmrc
shamefully-hoist=true
pnpm install
此外,如果 typescript 不在您的依赖项中,您可能必须使用pnpm add -D typescript
pnpm add -D typescript