Skip to content

Commit 069efe6

Browse files
tylerjusflyIfycode
authored andcommitted
fix: cleanup- adding a space after the colon, before the type
1 parent af79bc0 commit 069efe6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/cli.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@ import { folderNameMissingOptionPrompt } from './prompts/foldername';
66
import { templateMissingOptionPrompt } from './prompts/template';
77
import { downloadTemplateKit } from './main';
88

9-
let parseArgumentsIntoOptions = (rawArgs:string[]) => {
9+
let parseArgumentsIntoOptions = (rawArgs: string[]) => {
1010

1111
//configure --skip-git flag
12-
let myHandler = (value:string, argName:string, previousValue:string) => {
12+
let myHandler = (value: string, argName: string, previousValue: string) => {
1313
return previousValue || '--skip-git';
1414
}
1515

1616
//configure --help flag
17-
let helpHandler = (value:string, argName:string, previousValue:string) => {
17+
let helpHandler = (value: string, argName: string, previousValue: string) => {
1818
return previousValue || '--help';
1919
}
2020

2121
//configure --version flag
22-
let versionHelper = (value:string, argName:string, previousValue:string) => {
22+
let versionHelper = (value: string, argName: string, previousValue: string) => {
2323
return previousValue || '--version';
2424
}
2525

@@ -62,7 +62,7 @@ let parseArgumentsIntoOptions = (rawArgs:string[]) => {
6262
}
6363
}
6464

65-
let otherOptions = async (options:any) => {
65+
let otherOptions = async (options :any) => {
6666
if (options.skipInstall) {
6767
options.runInstall = false;
6868
}
@@ -84,7 +84,7 @@ let otherOptions = async (options:any) => {
8484
}
8585
}
8686

87-
export let cli = async (args:string[]) => {
87+
export let cli = async (args: string[]) => {
8888
let options = parseArgumentsIntoOptions(args);
8989

9090
try {

0 commit comments

Comments
 (0)