()
| 198 | } |
| 199 | |
| 200 | async function inputProjectName() { |
| 201 | off() |
| 202 | const { filter = '' }: { filter: string } = await prompt([ |
| 203 | { |
| 204 | name: 'filter', |
| 205 | type: 'text', |
| 206 | message: 'Input a single project name', |
| 207 | initial: ctx.config.project[0] || '', |
| 208 | }, |
| 209 | ]) |
| 210 | on() |
| 211 | await ctx.changeProjectName(filter.trim()) |
| 212 | } |
| 213 | |
| 214 | async function inputFilePattern() { |
| 215 | off() |
no test coverage detected