File tree 4 files changed +20
-2
lines changed
4 files changed +20
-2
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ . " $( dirname " $0 " ) /_/husky.sh"
3
+
4
+ npx --no-install commitlint --edit $1
Original file line number Diff line number Diff line change
1
+ /*
2
+ * @Descripttion :
3
+ * @version :
4
+ * @Author : wenlan
5
+ * @Date : 2022-01-15 15:12:21
6
+ * @LastEditors : wenlan
7
+ * @LastEditTime : 2022-01-15 15:12:23
8
+ */
9
+ module . exports = { extends : [ '@commitlint/config-conventional' ] }
Original file line number Diff line number Diff line change 22
22
"dev" : " vite" ,
23
23
"build" : " vue-tsc --noEmit && vite build" ,
24
24
"preview" : " vite preview" ,
25
+ "commit" :" npx cz" ,
25
26
"lint" : " eslint \" src/**/*\" --fix" ,
26
27
"prettier" : " prettier --write ." ,
27
28
"prepare" : " husky install"
Original file line number Diff line number Diff line change 4
4
* @Author : wenlan
5
5
* @Date : 2022-01-13 15:26:43
6
6
* @LastEditors : wenlan
7
- * @LastEditTime : 2022-01-15 14:44:44
7
+ * @LastEditTime : 2022-01-15 15:19:26
8
8
*/
9
9
import { createApp } from 'vue'
10
10
11
- import App from './App.vue'
11
+ import App from './App.vue' ;
12
+
13
+
14
+
15
+
12
16
13
17
createApp ( App ) . mount ( '#app' )
You can’t perform that action at this time.
0 commit comments