(input: string)
| 87 | choices: ["npm", "yarn", "pnpm"], |
| 88 | default: "npm", |
| 89 | validate(input: string) { |
| 90 | if (!input.trim()) { |
| 91 | return "Package manager cannot be empty"; |
| 92 | } |
| 93 | return true; |
| 94 | }, |
| 95 | }, |
| 96 | ], |
| 97 | actions: function actions(answers: Answers) { |
nothing calls this directly
no outgoing calls
no test coverage detected