在我当前的项目中使用我的其他仓库中的 Stenciljs 组件
Using Stenciljs Components from my other repo in my current project
我有两个带有 Stenciljs 组件的私有 bitbucket 存储库,我想在另一个中使用一些组件。我不想将它们上传到 npm 或任何类似的东西。两个回购都是 100% Stenciljs。
我想知道是否有一种方法可以直接从存储库中导入我需要的组件。我对这两个存储库都有读写权限。
感谢您的帮助
要安装不在 NPM 上的软件包,您可以添加 Git URL,例如对于 Bitbucket:
npm install git+ssh://git@bitbucket.org/{user}/{repo}.git
然后您可以并让 Stencil 仅处理使用过的组件。
我有两个带有 Stenciljs 组件的私有 bitbucket 存储库,我想在另一个中使用一些组件。我不想将它们上传到 npm 或任何类似的东西。两个回购都是 100% Stenciljs。
我想知道是否有一种方法可以直接从存储库中导入我需要的组件。我对这两个存储库都有读写权限。
感谢您的帮助
要安装不在 NPM 上的软件包,您可以添加 Git URL,例如对于 Bitbucket:
npm install git+ssh://git@bitbucket.org/{user}/{repo}.git
然后您可以