File tree 6 files changed +3887
-85
lines changed
6 files changed +3887
-85
lines changed Original file line number Diff line number Diff line change
1
+ GITHUB_TOKEN = " your github token"
Original file line number Diff line number Diff line change @@ -42,4 +42,5 @@ buck-out/
42
42
* .keystore
43
43
44
44
# Other
45
- vpnJni /* .zip
45
+ vpnJni /* .zip
46
+ .env
Original file line number Diff line number Diff line change 13
13
* .log
14
14
* .svg
15
15
* .png
16
- * ignore
16
+ * ignore
17
+
18
+ # Other
19
+ CHANGELOG.md
Original file line number Diff line number Diff line change
1
+ {
2
+ "git" : {
3
+ "requireBranch" : " master" ,
4
+ "requireCommits" : true ,
5
+ "commitMessage" : " ✨ feat(version): release ${version}" ,
6
+ "tagName" : " v${version}" ,
7
+ "tagAnnotation" : " ✨ feat(version): release ${version}"
8
+ },
9
+ "npm" : {
10
+ "publish" : true
11
+ },
12
+ "github" : {
13
+ "release" : true ,
14
+ "releaseName" : " v${version}"
15
+ },
16
+ "plugins" : {
17
+ "@release-it/conventional-changelog" : {
18
+ "preset" : " @favoloso/emoji" ,
19
+ "infile" : " CHANGELOG.md" ,
20
+ "header" : " # Changelog" ,
21
+ "ignoreRecommendedBump" : true
22
+ }
23
+ }
24
+ }
Original file line number Diff line number Diff line change 15
15
" react-native-simple-openvpn.podspec"
16
16
],
17
17
"scripts" : {
18
+ "release" : " dotenv release-it --" ,
19
+ "release-dry" : " yarn release --dry-run" ,
20
+ "pub-dry" : " npm publish --dry-run" ,
18
21
"test" : " echo \" Error: no test specified\" && exit 1" ,
19
22
"build-vpn-lib" : " yarn build-ics-ovpn; yarn gen-vpn-lib; yarn patch-vpn-lib" ,
20
23
"build-ics-ovpn" : " sh scripts/build-ics-ovpn.sh" ,
39
42
"license" : " GPL-2.0-or-later" ,
40
43
"licenseFilename" : " LICENSE" ,
41
44
"readmeFilename" : " README.md" ,
45
+ "publishConfig" : {
46
+ "registry" : " https://registry.npmjs.org/"
47
+ },
48
+ "favolosoEmoji" : {
49
+ "showEmojiPerCommit" : false ,
50
+ "emojis" : {
51
+ "feat" : {
52
+ "emoji" : " ✨" ,
53
+ "heading" : " ✨ Features"
54
+ },
55
+ "fix" : {
56
+ "emoji" : " 🐞" ,
57
+ "heading" : " 🐞 Bug Fixes"
58
+ }
59
+ }
60
+ },
42
61
"peerDependencies" : {
43
62
"react-native" : " >=0.63"
44
63
},
45
64
"devDependencies" : {
65
+ "@favoloso/conventional-changelog-emoji" : " ^0.10.0" ,
66
+ "@release-it/conventional-changelog" : " ^5.1.1" ,
46
67
"archiver" : " ^5.3.0" ,
47
68
"clang-format" : " ^1.4.0" ,
48
- "prettier" : " ^2.3.2"
69
+ "dotenv-cli" : " ^7.1.0" ,
70
+ "prettier" : " ^2.3.2" ,
71
+ "release-it" : " ^15.9.3"
49
72
}
50
73
}
You can’t perform that action at this time.
0 commit comments