我使用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'
}
]
})
2条答案
按热度按时间lymnna711#
将templateFiles Package 在数组中。
ijnw1ujt2#
如果有人感兴趣的话,我可以告诉你我是怎么做到的
语法:
不幸的是,plop不能很好地与空格一起使用,所以你不能使用它。我选择了逗号