Rémi de Juvigny 4e19ff006f Prompt wording
2021-08-23 16:11:36 +02:00

25 lines
492 B
JavaScript

'use strict';
const { join } = require('path');
module.exports = function(plop) {
// Service generator
plop.setGenerator('service', {
description: 'Generate a service for an API',
prompts: [
{
type: 'input',
name: 'id',
message: 'Service name',
},
],
actions: [
{
type: 'add',
path: join(process.cwd(), 'api/{{id}}/services/{{id}}.js'),
templateFile: 'templates/service.js.hbs',
},
],
});
};