(description: string)
| 383 | } |
| 384 | |
| 385 | export async function promptLongDescription(description: string) { |
| 386 | const hasLongDescription = await confirm({ |
| 387 | message: "Add a detailed long description?", |
| 388 | default: false, |
| 389 | }); |
| 390 | |
| 391 | if (hasLongDescription) { |
| 392 | const longDescription = await input({ |
| 393 | message: "Long description (supports basic markdown):", |
| 394 | default: description, |
| 395 | }); |
| 396 | return longDescription; |
| 397 | } |
| 398 | |
| 399 | return undefined; |
| 400 | } |
| 401 | |
| 402 | export async function promptUrls() { |
| 403 | const homepage = await input({ |
no outgoing calls
no test coverage detected
searching dependent graphs…