2

因此,当 Dependabot 运行并创建带有库更新的 PR 时,它会更新 package.json 和 package-lock.json 中的库版本,但是是否有任何我可能丢失的配置,即在dependabot 的每个 PR 中更新包.json 版本,例如:

  {
  "name": "my-projetc",
  "version": "0.0.1",
  "description": "Some description",
  "private": true,
  "author": "My",
  "license": "MIT",
  ...
  dependencies: {
   ...
  }
  devDependencies: {
   ...
  }

当前版本是版本:0.0.1

在运行dependabot并为某些库更新创建相应的PR后,有没有办法增加package.json(带有semver)的数量,如下所示:

      {
      "name": "my-projetc",
      "version": "0.0.2",
      "description": "Some description",
      "private": true,
      "author": "My",
      "license": "MIT",
      ...
      dependencies: {
       ...
      }
      devDependencies: {
       ...
      }

更新后的版本应该是:版本:0.0.2

根据文档,有现有的选项

* automerged_updates and
* version_requirement_updates

但是这两个选项都用于更新依赖项或devDependencies中使用的的版本。

4

0 回答 0