Added release-it config
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Nicolai Ort 2022-05-04 20:23:09 +02:00
parent 2915d0ad18
commit 78a82af315
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F

31
package.json Normal file
View File

@ -0,0 +1,31 @@
{
"name": "nginx-brotli",
"version": "3.15.0",
"description": "NGINX Base Image feat. brotli",
"repository": {
"type": "git",
"url": "git@git.odit.services:odit/nginx-brotli.git"
},
"license": "MIT",
"devDependencies": {
"release-it": "^15.0.0"
},
"scripts": {
"release":"release-it --patch --ci"
},
"release-it": {
"git": {
"commit": true,
"requireCleanWorkingDir": false,
"requireBranch": "main",
"commitMessage": "🚀RELEASE ${version}",
"push": true,
"tag": true,
"tagName": "${version}",
"tagAnnotation": "${version}"
},
"npm": {
"publish": false
}
}
}