gpt4 book ai didi

javascript - 为什么不能导入或要求 peerDependency,即使它存在于父模块中?

转载 作者:行者123 更新时间:2023-12-02 00:15:01 24 4
gpt4 key购买 nike

我正在尝试使用 npm peerDependencies 但似乎没有任何效果像宣传的那样。我错过了什么?

设置是,我有两个模块,modplugin,它们都依赖于来自 npm 的外部模块。 mod 声明对 plugin 和外部模块的硬依赖,插件声明对等依赖,以便访问父模块使用的版本。

文件看起来像这样:

~/plugin/package.json:

{
"name": "plugin",
"version": "1.0.0",
"main": "index.js",
"peerDependencies": {
"pad-right": "^0.2.2"
}
}

~/plugin/index.js

var peerDependency = require('pad-right')
module.exports = 'this is a plugin'

~/mod/package.json:

{
"name": "mod",
"version": "1.0.0",
"main": "index.js",
"dependencies": {
"pad-right": "^0.2.2",
"plugin": "../plugin"
}
}

~/mod/index.js:

var hardDependency = require('pad-right')
var plugin = require('plugin')

据我从文档和示例中了解到,我认为这应该是使用对等依赖项的标准方法,并且在任一目录中运行 npm install 都不会给出任何错误或警告。

然而,当我在 mod 文件夹中运行 webpack 时,我得到如下错误:

ERROR in ../plugin/index.js
Module not found: Error: Can't resolve 'pad-right' in '~/plugin'
@ ../plugin/index.js 1:21-41
@ ./index.js

这里出了什么问题,webpack 不应该使用来自父 mod 模块的对等依赖来解析 plugin 中的 require 语句吗?

最佳答案

啊,看起来这是一个边缘案例,它只影响通过文件系统在本地相互引用的模块。

解决方案显然是添加如下内容:

    resolve: {
alias: {
'pad-right': path.resolve('node_modules', 'pad-right'),
},
},

到你的 webpack 配置。 (或者尝试 resolve.symlinks: false,它解决了我发布的最小重现代码中的问题,但没有解决我实际项目中的问题)。

Article about the issue

关于javascript - 为什么不能导入或要求 peerDependency,即使它存在于父模块中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57231161/

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