This repository was archived by the owner on Nov 23, 2022. It is now read-only.
File tree 4 files changed +53
-1
lines changed
4 files changed +53
-1
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ . " $( dirname " $0 " ) /_/husky.sh"
3
+
4
+ yarn commitlint --edit $1
Original file line number Diff line number Diff line change
1
+ {
2
+ "commitUrlFormat" : " https://github.com/0x77dev/dstack/commits/{{hash}}" ,
3
+ "compareUrlFormat" : " https://github.com/0x77dev/dstack/compare/{{previousTag}}...{{currentTag}}" ,
4
+ "types" : [
5
+ {
6
+ "section" : " Features" ,
7
+ "type" : " feat"
8
+ },
9
+ {
10
+ "section" : " Bug Fixes" ,
11
+ "type" : " fix"
12
+ },
13
+ {
14
+ "hidden" : true ,
15
+ "type" : " chore"
16
+ },
17
+ {
18
+ "hidden" : true ,
19
+ "type" : " docs"
20
+ },
21
+ {
22
+ "hidden" : true ,
23
+ "type" : " style"
24
+ },
25
+ {
26
+ "hidden" : true ,
27
+ "type" : " refactor"
28
+ },
29
+ {
30
+ "hidden" : true ,
31
+ "type" : " perf"
32
+ },
33
+ {
34
+ "hidden" : true ,
35
+ "type" : " test"
36
+ }
37
+ ]
38
+ }
Original file line number Diff line number Diff line change
1
+ module . exports = { extends : [ '@commitlint/config-conventional' ] }
Original file line number Diff line number Diff line change 3
3
"version" : " 0.0.0" ,
4
4
"license" : " GPl-3.0" ,
5
5
"scripts" : {
6
+ "prepare" : " husky install" ,
6
7
"build" : " nx run-many --all --target=build" ,
7
- "version:bump" : " lerna version bump"
8
+ "version:bump" : " lerna version bump" ,
9
+ "release" : " standard-version" ,
10
+ "release:minor" : " standard-version --release-as minor" ,
11
+ "release:patch" : " standard-version --release-as patch" ,
12
+ "release:major" : " standard-version --release-as major"
8
13
},
9
14
"private" : true ,
10
15
"dependencies" : {
16
21
" docs"
17
22
],
18
23
"devDependencies" : {
24
+ "@commitlint/cli" : " ^16.1.0" ,
25
+ "@commitlint/config-conventional" : " ^16.0.0" ,
19
26
"@nrwl/cli" : " 13.4.4" ,
20
27
"@nrwl/eslint-plugin-nx" : " 13.4.4" ,
21
28
"@nrwl/jest" : " 13.4.4" ,
29
36
"@typescript-eslint/parser" : " ~5.3.0" ,
30
37
"eslint" : " 8.2.0" ,
31
38
"eslint-config-prettier" : " 8.1.0" ,
39
+ "husky" : " ^7.0.4" ,
32
40
"jest" : " 27.2.3" ,
33
41
"lerna" : " ^4.0.0" ,
34
42
"prettier" : " ^2.3.1" ,
43
+ "standard-version" : " ^9.3.2" ,
35
44
"ts-jest" : " 27.0.5" ,
36
45
"typescript" : " ~4.4.3"
37
46
}
You can’t perform that action at this time.
0 commit comments