gpt4 book ai didi

javascript - 不使用工作区的 yarn nohoist

转载 作者:行者123 更新时间:2023-12-05 00:29:48 29 4
gpt4 key购买 nike

我的一个项目突然无法在 Windows 笔记本电脑上编译,而完全相同的代码在 Mac 上运行。我已经阅读了关于提升和添加 nohoist 的信息,这似乎解决了 Apollo 客户端的问题。

"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/tslib",
"**/tslib/**"
]
}
现在,我不使用工作区,但由于我在 package.json 中使用上面的代码,Yarn 要求 -W添加或删除包时的参数说:
error Running this command will add the dependency to the workspace root rather than
the workspace itself, which might not be what you want - if you really meant it, make it
explicit by running this command again with the -W flag (or --ignore-workspace-root-check).
在我看来,这似乎不是最好的方法。我应该怎么办?

最佳答案

通过在您的 package.json 中添加工作区配置您已启用工作区的使用。这就是您收到有关将依赖项添加到工作区根目录的警告的原因。 nohoist是一个工作区唯一的选项;创建它是为了使与 yarn 工作区提升方案不兼容的 3rd 方库仍可在工作区下使用。见 https://classic.yarnpkg.com/blog/2018/02/15/nohoist/

“nohoist” enables workspaces to consume 3rd-party libraries not yet compatible with its hoisting scheme. The idea is to disable the selected modules from being hoisted to the project root. They were placed in the actual (child) project instead, just like in a standalone, non-workspaces, project.


如果您不想使用工作区,则需要从 package.json 中删除工作区配置。并以另一种方式解决您的编译问题。

关于javascript - 不使用工作区的 yarn nohoist,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69840040/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com