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