summaryrefslogtreecommitdiffhomepage
path: root/.release-it.json
blob: d494c644633882d470e97c8b39122edea4cd7000 (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
25
26
27
28
29
30
31
32
33
{
  "git": {
    "requireCleanWorkingDir": false,
    "changelog": ".github/scripts/create_changelog.sh",
    "tagName": "v${version}"
  },
  "github": {
    "release": true,
    "releaseName": "v${version}",
    "assets": ["__builds__/*.zip"]
  },
  "npm": {
    "publish": false,
    "ignoreVersion": true
  },
  "hooks": {
    "before:init": [
      "chmod +x .github/scripts/*",
      ".github/scripts/pre_check.sh"
    ],
    "after:git:release": ".github/scripts/create_asset.sh"
  },
  "plugins": {
    "@release-it/bumper": {
      "in": {
        "file": "VERSION"
      },
      "out": {
        "file": "VERSION"
      }
    }
  }
}