This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
api/plopfile.js
2021-10-24 04:18:18 +02:00

9 lines
199 B
JavaScript

const { serviceGenerator } = require('./generators/service/index.js')
module.exports = (
/** @type {import('plop').NodePlopAPI} */
plop
) => {
plop.setGenerator('service', serviceGenerator)
}