UNPKG

properties-gen

Version:

CLI to generate environment properties based on config

23 lines (22 loc) 785 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.confirmOverwritePrompt = exports.promptOptions = void 0; var index_1 = require("../enums/index"); exports.promptOptions = [ { type: 'select', name: 'initialGroups', message: 'Which initial groups do you want to create?', choices: [ { title: 'Server', value: index_1.InitialGroupOptions.SERVER }, { title: 'Client', value: index_1.InitialGroupOptions.CLIENT }, { title: 'Both server and client', value: index_1.InitialGroupOptions.BOTH }, ], }, ]; exports.confirmOverwritePrompt = { type: 'confirm', name: 'overwrite', message: 'Do you want to overwrite the existing config file?', initial: false, };