aboutsummaryrefslogtreecommitdiff
path: root/.release-it.json
blob: 2ac256ce069a1aa8d9315f9cfbbd6ce7480a91f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
	"npm": false,
	"git": {
		"tagName": "v${version}"
	},
	"github": {
		"release": true,
		"assets": [
			"dist/*.zip"
		]
	},
	"hooks": {
		"after:git:release": "make dist"
	}
}