@quo0/stiletto
Version:
With stiletto library you will be able to mock requests and choose between preconfigured responses right on the fly via UI
15 lines • 596 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.generateLaunchSetupQuestions = void 0;
function generateLaunchSetupQuestions(possiblePaths, setupName) {
return [
{
name: 'setupPath',
type: 'list',
message: `Where are ${possiblePaths.length} setups with the ${setupName} name! Please chose the correct configuration path`,
choices: possiblePaths,
},
];
}
exports.generateLaunchSetupQuestions = generateLaunchSetupQuestions;
//# sourceMappingURL=launch-setup-questions.js.map