How execute other prompt when prompt previous is true on Yeoman?

How execute prompt2 when prompt1 is true on Yeoman as shown below?

var prompts = [
  {name: 'prompt1', message: 'Ask 1?'},
  {name: 'prompt2', message: 'Ask 2?'}
];

Yeoman uses a thing called Inquirer.js for the prompt system. Here’s an example of how you can ask Question 2 if Question 1 was true:

inquirer.prompt([{
  name: 'movie',
  type: 'confirm',
  message: 'Have you seen a movie lately?'
}, {
  when: function (response) {
    return response.movie;
  },
  name: 'good-or-not',
  message: 'Sweet! Was it any good?'
}], function (response) {});

From the Inquirer.js documentation:

when: (Function) Receive the current user answers hash and should return true or false depending on wheter or not this question should be asked.


The answers/resolutions are collected from stackoverflow, are licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0 .
Read More:   What's the difference between `useRef` and `createRef`?

Similar Posts