@nswhp/golden-path
Version:
Generate all the recommended golden paths
14 lines (13 loc) • 519 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.projectNameQuestion = void 0;
const tslib_1 = require("tslib");
const inquirer_1 = (0, tslib_1.__importDefault)(require("inquirer"));
function projectNameQuestion() {
return inquirer_1.default.prompt([{
name: 'projectName',
type: 'input',
message: 'Please enter a name to identify this project (eg awp-polos-v1):',
}]);
}
exports.projectNameQuestion = projectNameQuestion;