summaryrefslogtreecommitdiffhomepage
path: root/.release-it.json
blob: c831e1733cd9ffa6171432c2b206161cd1b515fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "git": {
    "requireCleanWorkingDir": false,
    "changelog": "auto-changelog --stdout"
  },
  "github": {
    "release": true,
    "releaseName": "v${version}"
  },
  "npm": {
    "publish": false,
    "ignoreVersion": true
  },
  "plugins": {
    "@release-it/bumper": {
      "in": {
        "file": "VERSION"
      },
      "out": {
        "file": "VERSION"
      }
    }
  }
}