I have an object of templates and I want to have a prompt with this list that sends to other prompt based on condition
My object
export const myTempates = {
endpoint: 'lambda-function-api-endpoint',
handlerTest: 'handler-test-file',
handlerIntegrationTest: 'handler-integration-test-file',
};
First of all adding multiple generators will create a list of inputs but if you want a list of inputs in a genertor you can do like this :
To create a prompt list you can use
type: 'list'
withtype: 'input'
and useObject.values(myTempates)
to get all the templates you have in myTemplates objectTo have a prompt based on condition you can use when