aboutsummaryrefslogtreecommitdiff
path: root/.release-it.json
blob: 00966715847846fe0676a72037650f3371468b8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
	"npm": false,
	"git": {
		"tagName": "v${version}"
	},
	"github": {
		"release": true,
		"assets": [
			"dist/*.zip"
		]
	},
	"plugins": {
		"@release-it/bumper": {
			"out": {
				"file": "VERSION",
				"type": "text/plain"
			}
		}
	},
	"hooks": {
		"after:git:release": "make dist"
	}
}