22

在我的 Monorepo 中,我有一个包,我希望在它的 node_modules 中包含所有依赖项。

但无论我做什么,它的 node_modules 仍然是空的。

因此,出于我的问题的目的,我能够通过以下设置重现该问题

/
 package.json
 lerna.json
 node_modules
 packages/
          A/
            node_modules
            package.json
            index.ts
          B/
            node_modules
            package.json
            index.ts

我为此创建了一个仓库

主包.json

{
  "name": "A-B-test",
  "private": true,
  "workspaces": {
    "packages": ["packages/*"],
    "nohoist": [ "**/B" ]
  },
  ...
  "devDependencies": {
    "lerna": "^3.13.4"
  }
}

B/package.json好像

{
  "name": "@scaljeri/B",
  "version": "1.0.0",
  "main": "index.js",
  "license": "MIT",
  "dependencies": {
    "angular": "^1.7.8"
  },
  "devDependencies": {
    "browserify": "^16.2.3",
    "typescript": "^3.5.2"
  }
}

现在,当我yarn在项目的根目录中运行时,所有依赖项都安装在根目录中node_modules

纱线版本:1.16.0 节点:12.4.0

有什么建议可能是什么问题?

4

4 回答 4

31

根据我的经验,有必要以下列方式双重指定每个包:

{
  "nohoist": [
    "**/B",
    "**/B/**",
    "**/C",
    "**/C/**"
  ]
}

另外,我发现node_modules修改nohoist设置后有必要删除所有现有文件夹。因此,如果您的项目位于 中packages,并且您位于项目目录中,则可以node_modules像这样删除所有这些文件夹:

# delete node_modules on linux
rm -rf ./packages/*/node_modules
rm -rf ./node_modules

# install again
yarn install --check-files
于 2019-12-13T19:52:22.987 回答
5

将 nohoist 应用到子包的 package.json 为我做了。

  "workspaces": {
    "nohoist": [
      "*react-native*",
      "*react-native*/**"
    ]
  },
于 2020-01-12T06:19:09.843 回答
5

我尝试了一些选项,但最终对我有用的唯一一个是nohoist在子包中指定选项。无需在根级别指定任何内容。
所以我package.jsonB包装是:

{
...

  "workspaces": {
    "nohoist": ["**"]
  },

...
}
于 2021-03-29T20:59:04.657 回答
1

如果要从提升中排除包 B 节点模块,可以在 package.json 中执行此操作:

  "workspaces": {
    "nohoist": [
      "**/B",
      "**/B/**"
    ]
  },

之后删除node_modulesyarn.lockyarn install再次运行,您应该会看到 packages/B/node_modules 没有被提升到项目的顶层

于 2021-02-05T00:48:59.213 回答