我的项目中具有以下结构:
现在,当我运行npm publish
时,我想在 component1 中包含 test.js ,因为它在 index.js 中被引用了。
这是我的pacakge.json:
{
"name": "@test/component1",
"version": "0.0.1",
"publishConfig": {
"registry": "registry.url"
},
"files": [
"**/*",
"../common/*"
],
"main": "index.js"
}
如您所见,我在 files 属性中引用了该文件夹,但是该文件夹未包含在已发布的软件包中。
您会推荐什么?
谢谢