如何在多个项目中更新使用 Bit.dev 构建的组件?

发布于 2025-01-09 02:23:53 字数 278 浏览 1 评论 0原文

我有一个项目 A 和项目 B,它们都安装了(通过 npm)相同的组件 X。

要在这两个项目中使用更新的组件,我必须手动进入每个项目并执行纱线升级组件 x。

我们计划有 30 多个项目使用相同的组件,并且在每个项目中运行纱线升级将是一场完全的噩梦。

有没有一种方法可以让我在导出后更轻松地更新两个项目中的此组件?

如果不是这样,如何更轻松地更新跨多个项目安装的这个组件?

我使用 Bit Harmony 版本和 NextJs 作为我的框架,并将它们托管在 Vercel 中。

I have a project A and project B which both have installed (via npm) the same component X.

To use the updated component in both projects I have to manually go inside of each projects and execute yarn upgrade component-x.

We plan to have more than 30 projects consuming the same component and will be a completely nightmare go inside of each one and run yarn upgrade.

Is there a way where i can update this component in both projects after export with less effort?

If not so, how do I update this component that is installed across multiple projects more easily?

I'm using Bit Harmony version and NextJs as my framework and hosting them in Vercel.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

2025-01-16 02:23:53

对于那些需要某种解决方案的人,我们通过将 Bit.dev 中的范围更改为 public,然后配置 dependentabot 来查找我们的依赖项来解决它。

函数 dependentabot.yml 的基本示例

version: 2
registries:
  bit-components:
    type: npm-registry
    url: https://node.bit.dev 
    token: ${{secrets.NPM_RC_TOKEN}}
updates:
  - package-ecosystem: "npm"
    directory: "/"
    registries:
      - bit-components
    schedule:
      interval: "daily"

For those who is in need of some solution, we solve it by changing our scope in Bit.dev to public and then configuring the dependabot to lookup for our dependencies.

Basic example of functional dependabot.yml

version: 2
registries:
  bit-components:
    type: npm-registry
    url: https://node.bit.dev 
    token: ${{secrets.NPM_RC_TOKEN}}
updates:
  - package-ecosystem: "npm"
    directory: "/"
    registries:
      - bit-components
    schedule:
      interval: "daily"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文