Skip to content

Commit f94dcfe

Browse files
committedApr 1, 2020
feat: add and setup release-it
1 parent e16cdf0 commit f94dcfe

File tree

3 files changed

+2080
-55
lines changed

3 files changed

+2080
-55
lines changed
 

‎.release-it.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"git": {
3+
"commitMessage": "chore: release %s",
4+
"tagName": "v%s"
5+
},
6+
"npm": {
7+
"publish": true
8+
},
9+
"github": {
10+
"release": true
11+
},
12+
"plugins": {
13+
"@release-it/conventional-changelog": {
14+
"preset": "angular"
15+
}
16+
}
17+
}

‎package.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
"repository": "https://github.com/netguru/sticky-parallax-header",
66
"author": "IdaszakDaniel <idaszak1@gmail.com>",
77
"license": "MIT",
8-
"scripts": {},
8+
"scripts": {
9+
"release": "release-it"
10+
},
911
"dependencies": {
1012
"prop-types": "^15.7.2"
1113
},
@@ -17,6 +19,7 @@
1719
"@babel/core": "^7.8.4",
1820
"@commitlint/cli": "^8.3.5",
1921
"@commitlint/config-conventional": "^8.3.4",
22+
"@release-it/conventional-changelog": "^1.1.0",
2023
"babel-eslint": "^10.0.3",
2124
"eslint": "^6.8.0",
2225
"eslint-config-airbnb": "^18.0.1",
@@ -27,7 +30,8 @@
2730
"eslint-plugin-prettier": "^3.1.2",
2831
"eslint-plugin-react": "^7.18.3",
2932
"eslint-plugin-react-native": "^3.8.1",
30-
"husky": "^4.2.3"
33+
"husky": "^4.2.3",
34+
"release-it": "^13.5.1"
3135
},
3236
"husky": {
3337
"hooks": {

0 commit comments

Comments
 (0)