Skip to content

Commit

Permalink
change option copy
Browse files Browse the repository at this point in the history
  • Loading branch information
ErnestTeluk committed Oct 29, 2024
1 parent 0177b81 commit b581a6b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/commands/createForm/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ const customDirPathPrompt: PromptObject = {
export const createForm = new Command()
.name('createForm')
.description('Creates new uniforms form template')
.option('-s, --skip', 'skip custom dir question, and create in current dir')
.option(
'-s, --skip',
'skip custom directory question, and create in current directory',
)
.option(
'-e, --extension <extension>',
`Select extension (${fileTypes.map(({ value }) => value).join(', ')})`,
Expand Down
5 changes: 4 additions & 1 deletion src/commands/createTheme/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ export const createTheme = new Command()
.name('createTheme')
.description('Creates new uniforms theme template')
.option('-n, --name <name>', 'Insert theme name')
.option('-s, --skip', 'skip custom dir question, and create in current dir')
.option(
'-s, --skip',
'skip custom directory question, and create in current directory',
)
.option(
'-e, --extension <extension>',
`Select extension (${fileTypes.map(({ value }) => value).join(', ')})`,
Expand Down

0 comments on commit b581a6b

Please sign in to comment.