File tree Expand file tree Collapse file tree 2 files changed +62
-0
lines changed Expand file tree Collapse file tree 2 files changed +62
-0
lines changed Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ types : [
3
+ {
4
+ type : "feat" ,
5
+ section : "Features" ,
6
+ hidden : false ,
7
+ } ,
8
+ {
9
+ type : "fix" ,
10
+ section : "Bug Fixes" ,
11
+ hidden : false ,
12
+ } ,
13
+ {
14
+ type : "perf" ,
15
+ section : "Performance Improvements" ,
16
+ hidden : false ,
17
+ } ,
18
+ {
19
+ type : "revert" ,
20
+ section : "Reverts" ,
21
+ hidden : false ,
22
+ } ,
23
+ {
24
+ type : "docs" ,
25
+ section : "Documentation" ,
26
+ hidden : false ,
27
+ } ,
28
+ {
29
+ type : "style" ,
30
+ section : "Styles" ,
31
+ hidden : true ,
32
+ } ,
33
+ {
34
+ type : "chore" ,
35
+ section : "Miscellaneous Chores" ,
36
+ hidden : true ,
37
+ } ,
38
+ {
39
+ type : "refactor" ,
40
+ section : "Code Refactoring" ,
41
+ hidden : false ,
42
+ } ,
43
+ {
44
+ type : "test" ,
45
+ section : "Tests" ,
46
+ hidden : true ,
47
+ } ,
48
+ {
49
+ type : "build" ,
50
+ section : "Build System" ,
51
+ hidden : false ,
52
+ } ,
53
+ {
54
+ type : "ci" ,
55
+ section : "Continuous Integration" ,
56
+ hidden : false ,
57
+ } ,
58
+ ] ,
59
+ } ;
Original file line number Diff line number Diff line change 13
13
"lint:scripts:fix" : " npx eslint --ext .js . --fix" ,
14
14
"test" : " npm run test:compile" ,
15
15
"test:compile" : " npx gulp compile" ,
16
+ "prerelease" : " npm run lint && npm test" ,
17
+ "release" : " npx standard-version" ,
16
18
"commit" : " npx git cz"
17
19
},
18
20
"repository" : {
53
55
"gulp-eslint" : " ~6.0.0" ,
54
56
"husky" : " ^4.3.0" ,
55
57
"prettier" : " ^2.1.1" ,
58
+ "standard-version" : " ^9.0.0" ,
56
59
"stylelint" : " ^13.7.0" ,
57
60
"stylelint-config-coldfront" : " ^2.0.1"
58
61
},
You can’t perform that action at this time.
0 commit comments