2
1
mirror of https://github.com/Thream/api.git synced 2024-07-21 03:38:31 +02:00
api/generators/service/index.js
2022-08-29 16:10:17 +00:00

46 lines
1.0 KiB
JavaScript

/** @type {import('node-plop').PlopGeneratorConfig} */
export const serviceGenerator = {
description: 'REST API endpoint',
prompts: [
{
type: 'input',
name: 'url',
message: 'url'
},
{
type: 'list',
name: 'httpMethod',
message: 'httpMethod',
choices: ['GET', 'POST', 'PUT', 'DELETE']
},
{
type: 'input',
name: 'description',
message: 'description'
},
{
type: 'list',
name: 'tag',
message: 'tag',
choices: ['users', 'guilds', 'channels', 'messages', 'members']
},
{
type: 'confirm',
name: 'shouldBeAuthenticated',
message: 'shouldBeAuthenticated'
}
],
actions: [
{
type: 'add',
path: 'src/services/{{url}}/{{lowerCase httpMethod}}.ts',
templateFile: 'generators/service/service.ts.hbs'
},
{
type: 'add',
path: 'src/services/{{url}}/__test__/{{lowerCase httpMethod}}.test.ts',
templateFile: 'generators/service/service.test.ts.hbs'
}
]
}