UNPKG

@nswhp/golden-path

Version:
19 lines (18 loc) 722 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.environmentSelectionQuestion = void 0; const tslib_1 = require("tslib"); const inquirer_1 = (0, tslib_1.__importDefault)(require("inquirer")); function environmentSelectionQuestion() { return inquirer_1.default.prompt([{ type: 'checkbox', name: 'environmentSelection', message: 'Selects what environments your project will have:', choices: [ { name: 'pd', checked: true }, { name: 'np', checked: true }, { name: 'qa' }, ], }]); } exports.environmentSelectionQuestion = environmentSelectionQuestion;