trailsjs/generator-trailpack

View on GitHub
src/app/questions/app.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Exports array that contains questions for prompting.
 * The array with questions is an array of Inquirer prompt objects - https://github.com/SBoudrias/Inquirer.js#prompts-type
 *
 * @example
 * export default [{
 *   type: 'input',
 *   name: 'inputName',
 *   message: 'Message for the input'
 * }];
 */

export default [];