NPM发布。包含兄弟目录中的文件

时间:2018-07-19 10:14:06

标签: javascript node.js npm package.json npm-publish

我的项目中具有以下结构:

  • 常见
    • test.js
  • component1
    • index.js
    • package.js
  • component2
    • index.js
    • package.js

现在,当我运行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 属性中引用了该文件夹,但是该文件夹未包含在已发布的软件包中。

您会推荐什么?

谢谢

0 个答案:

没有答案