版博士V2.0程序
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

plopfile.js 316 B

1234567891011121314151617
  1. export default function (plop) {
  2. plop.setGenerator("test", {
  3. description: "this is a test",
  4. prompts: [
  5. {
  6. type: "input",
  7. name: "name",
  8. message: "What is your name?",
  9. },
  10. ],
  11. actions: [
  12. () => {
  13. throw new Error("Action failed");
  14. },
  15. ],
  16. });
  17. }