npm 将依赖项安装在错误的目录中

发布于 2025-01-10 08:13:12 字数 658 浏览 0 评论 0原文

我创建了一个具有工作区的节点项目,项目结构如下所示:

/package.json

{
 "name": "root",
  "workspaces": ["./child"]
}

/child/package.json

{
  "name": "child",
  "dependencies": {
    "@angular/compiler": "^13.1.2",
    "@angular/router": "^13.1.2"
  }
}

运行 npm install 时,它会安装 @angular/compiler在根 node_modules 目录中,这是预期的行为。 但它在child/node_modules中安装@angular/router,它也应该安装在根node_modules中

,它的依赖项如rxjs甚至安装在子目录中没有其他版本的相同软件包

该项目是在干净且空的文件夹中创建的,并且我清除了 npm 缓存

最小复制

I created a node project that has a workspace, the project structure looks like:

/package.json

{
 "name": "root",
  "workspaces": ["./child"]
}

/child/package.json

{
  "name": "child",
  "dependencies": {
    "@angular/compiler": "^13.1.2",
    "@angular/router": "^13.1.2"
  }
}

when running npm install it installs @angular/compiler in the root node_modules dir which is the expected behavior.
but it installs @angular/router in child/node_modules, it should be installed in the root node_modules

also, the dependencies of it such as rxjs are installed in the child dir even no other versions of the same packages

the project is created in a clean and empty folder, and I cleared the npm cache

minimal reproduction

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文