UNPKG

generator-portals-clientside

Version:

Generates a SharePoint clientside project skeleton. Brought to you by Skyline's Portals & Collaboration Team.

20 lines (17 loc) 415 B
var prompts = { ListTitle: { type: "input", name: "ListTitle", message: "Whats the name of the list?:", } }; var promptUser = function(generator, key) { return generator.prompt(prompts[key]).then(function(answers) { generator.params = Object.assign({}, generator.params, answers); }); }; module.exports = { prompt1: function() { return promptUser(this, "ListTitle"); } };