(input: string)
| 76 | choices: ["npm", "yarn", "pnpm"], |
| 77 | default: "npm", |
| 78 | validate(input: string) { |
| 79 | if (!input.trim()) { |
| 80 | return "Package manager cannot be empty"; |
| 81 | } |
| 82 | return true; |
| 83 | }, |
| 84 | }, |
| 85 | ], |
| 86 | actions: function actions(answers: Answers) { |
nothing calls this directly
no outgoing calls
no test coverage detected