0

我正在使用 plop 依赖来生成模块。我想一次性生成 n 个使用单个模板的文件。

plop.setGenerator('module', {
  description: 'Create a module',
  // User input prompts provided as arguments to the template
  prompts: [
    {
      // Raw text input
      type: 'input',
      // Variable name for this input
      name: 'name',
      // Prompt to display on command line
      message: 'What is your module name?'
    }
  ],
  actions: [
    {
      // Add a new file
      type: 'addMany',
      // Path for the new file
      destination: 'src/Screens/{{pascalCase name}}',
      // Handlebars template used to generate content of new file
      templateFiles: 'plop-templates/**.js.hbs'
    }
  ]
})
4

1 回答 1

0

将 templateFiles 包装在数组中。

templateFiles: ['plop-templates/**.js.hbs']
于 2020-09-01T17:54:20.600 回答