gpt4 book ai didi

npm - Webpack:从本地目录加载依赖项

转载 作者:行者123 更新时间:2023-12-01 05:55:38 25 4
gpt4 key购买 nike

包.json

"dependencies": {
"axios": "^0.18.0",
"lodash": "^4.17.5",
"moment": "^2.22.0",
"vue": "^2.5.2",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"my-module-1": "file:../modules/my-module-1",
"my-module-2": "file:../modules/my-module-2",
"my-module-3": "file:../modules/my-module-3"
},

如果我安装依赖项,它就成功完成了。但是,在映射 node_modules 中, my-module-x 是一个快捷方式,这会导致 babel-loader 出现奇怪的错误。如果我将模块复制粘贴到 node modules 中,它工作得很好。在以前的 webpack 版本中,它们总是被复制。现在使用 webpack 3.6.0。

所以,我的问题是:是否有另一种在 package.json 中定义依赖项的方法,或者是一个将模块(来自 package.json)从另一个目录复制到 node_modules 而不创建快捷方式的插件。

最佳答案

"dependencies": {
"my-module": "file:a_map/my-module",
// a_map folder is on the same level as this package.json file
}

非常适合设置:
Npm (6.12.0)

enter image description here

关于npm - Webpack:从本地目录加载依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49768499/

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