roc
Version:
Build modern web applications easily
31 lines (30 loc) • 800 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
/**
* The default prompt options.
*/
const defaultPrompt = exports.defaultPrompt = [{
type: 'input',
name: 'rocAppName',
message: 'What\'s the name of your application?',
default: 'my-roc-app',
filter: input => input.toLowerCase().split(' ').join('-')
}, {
type: 'input',
name: 'rocAppDesc',
message: 'What\'s the description for the application?',
default: 'My Roc Application'
}, {
type: 'input',
name: 'rocAppAuthor',
message: 'Who\'s the author of the application?',
default: 'John Doe'
}, {
type: 'input',
name: 'rocAppLicense',
message: 'What\'s the license for the application?',
default: 'MIT'
}];
//# sourceMappingURL=default-prompt.js.map