Skip to content

Commit 22f3ed6

Browse files
release-it added
1 parent 61b90c5 commit 22f3ed6

File tree

4 files changed

+1761
-2
lines changed

4 files changed

+1761
-2
lines changed

.gitignore

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1-
.idea/*
1+
# VSCode
2+
.vscode/
3+
jsconfig.json
24

5+
# IntelliJ/Webstorm
6+
.idea
7+
8+
# OS X
9+
.DS_Store
10+
11+
# NodeJS
12+
npm-debug.log
313
node_modules
14+
yarn-error.log

.release-it.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"npm": {
3+
"publish": true
4+
},
5+
"github": {
6+
"release": true
7+
}
8+
}

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,16 @@
44
"description": "",
55
"main": "index.js",
66
"scripts": {
7-
"test": "echo \"Error: no test specified\" && exit 1"
7+
"test": "echo \"Error: no test specified\" && exit 1",
8+
"release": "release-it"
89
},
910
"author": "Nader Dabit",
1011
"license": "ISC",
1112
"peerDependencies": {
1213
"react": ">=16.8.0",
1314
"react-native": ">=0.59"
15+
},
16+
"devDependencies": {
17+
"release-it": "^12.3.5"
1418
}
1519
}

0 commit comments

Comments
 (0)