File tree Expand file tree Collapse file tree 4 files changed +37
-6
lines changed Expand file tree Collapse file tree 4 files changed +37
-6
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ test-report.xml
23
23
.env.test.local
24
24
.env.production.local
25
25
.parcel-cache
26
+ example /.parcel-cache
26
27
27
28
npm-debug.log *
28
29
yarn-debug.log *
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ if [ -z " $husky_skip_init " ]; then
3
+ debug () {
4
+ [ " $HUSKY_DEBUG " = " 1" ] && echo " husky (debug) - $1 "
5
+ }
6
+
7
+ readonly hook_name=" $( basename " $0 " ) "
8
+ debug " starting $hook_name ..."
9
+
10
+ if [ " $HUSKY " = " 0" ]; then
11
+ debug " HUSKY env variable is set to 0, skipping hook"
12
+ exit 0
13
+ fi
14
+
15
+ if [ -f ~ /.huskyrc ]; then
16
+ debug " sourcing ~/.huskyrc"
17
+ . ~ /.huskyrc
18
+ fi
19
+
20
+ export readonly husky_skip_init=1
21
+ sh -e " $0 " " $@ "
22
+ exitCode=" $? "
23
+
24
+ if [ $exitCode != 0 ]; then
25
+ echo " husky - $hook_name hook exited with code $exitCode (error)"
26
+ exit $exitCode
27
+ fi
28
+
29
+ exit 0
30
+ fi
Original file line number Diff line number Diff line change 1
1
# Committed Components
2
2
3
- [ ![ Committed Badge] ( https://img.shields.io/endpoint?url=https%3A%2F%2Fcommitted.software %2Fbadge )] ( https://committed.io )
3
+ [ ![ Committed Badge] ( https://img.shields.io/endpoint?url=https%3A%2F%2Fcommitted.io %2Fbadge )] ( https://committed.io )
4
4
![ Build Status] ( https://github.com/commitd/components/workflows/build/badge.svg?branch=main )
5
5
[ ![ Quality Gate Status] ( https://sonarcloud.io/api/project_badges/measure?project=commitd_components&metric=alert_status&token=aa002ca75e2f3a6d028af9074bceeda1ffa2f9f7 )] ( https://sonarcloud.io/dashboard?id=commitd_components )
6
6
[ ![ Coverage] ( https://sonarcloud.io/api/project_badges/measure?project=commitd_components&metric=coverage&token=aa002ca75e2f3a6d028af9074bceeda1ffa2f9f7 )] ( https://sonarcloud.io/dashboard?id=commitd_components )
Original file line number Diff line number Diff line change 144
144
" @commitlint/config-conventional"
145
145
]
146
146
},
147
+ "config" : {
148
+ "commitizen" : {
149
+ "path" : " ./node_modules/cz-conventional-changelog"
150
+ }
151
+ },
147
152
"devDependencies" : {
148
153
"@commitlint/cli" : " ^12.1.4" ,
149
154
"@commitlint/config-conventional" : " ^12.1.4" ,
216
221
"@radix-ui/react-tabs" : " 0.0.15" ,
217
222
"@radix-ui/react-tooltip" : " 0.0.20" ,
218
223
"@stitches/react" : " ^0.2.2"
219
- },
220
- "config" : {
221
- "commitizen" : {
222
- "path" : " ./node_modules/cz-conventional-changelog"
223
- }
224
224
}
225
225
}
You can’t perform that action at this time.
0 commit comments