File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ if (!options.skipGitInit) {
109109 try {
110110 await $ `git init` ;
111111 await $ `git add .` ;
112- await $ `git commit -m " ${ 'feat: initial commit' } " ` ;
112+ await $ `git commit -m ${ 'feat: initial commit' } ` ;
113113 spinner . succeed ( ) ;
114114 } catch ( error ) {
115115 debug ( 'Failed to initialize git repository' , error ) ;
Original file line number Diff line number Diff line change 11import Conf from 'conf' ;
22
33type CliConfig = {
4- allowTelemetry ?: boolean ;
4+ allowTelemetry ?: boolean | undefined ;
55} ;
66
77export const config = new Conf < CliConfig > ( {
Original file line number Diff line number Diff line change 1010
1111 "strict" : true ,
1212 "noUncheckedIndexedAccess" : true ,
13+ "exactOptionalPropertyTypes" : true ,
1314
1415 "moduleResolution" : " NodeNext" ,
1516 "module" : " NodeNext" ,
You can’t perform that action at this time.
0 commit comments