| 12345678910111213141516171819202122232425 |
- export default plop => {
- plop.setGenerator('domain', {
- description: '生成一个领域',
- prompts: [
- {
- type: 'input',
- name: 'name',
- message: 'domain name: '
- }
- ],
- actions: [
- {
- type: 'add',
- path: 'src/domain/{{name}}/api.ts',
- templateFile: 'plop-template/api.hbs'
- },
- {
- type: 'add',
- path: 'src/domain/{{name}}/service.ts',
- templateFile: 'plop-template/service.hbs'
- }
- ]
- })
- plop.setHelper('upperCase', string => string.charAt(0).toUpperCase() + string.slice(1))
- }
|