@nswhp/golden-path
Version:
Generate all the recommended golden paths
19 lines (18 loc) • 722 B
JavaScript
;
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;