(template, answers)
| 74 | // The action list is built without running any action, so no project is written |
| 75 | // and nothing is installed. |
| 76 | const actionsFor = async (template, answers) => { |
| 77 | const generator = await generatorFor(template); |
| 78 | |
| 79 | return generator.actions({ ...BASE_ANSWERS, ...answers }); |
| 80 | }; |
| 81 | |
| 82 | const filesFrom = (actions) => |
| 83 | actions |
no test coverage detected