UNPKG

generator-jhipster-nodejs

Version:

A NodeJS blueprint that creates the backend using NodeJS with NestJS framework

16 lines (13 loc) 475 B
import ServerGenerator from 'generator-jhipster/generators/server'; export default class extends ServerGenerator { constructor(args, opts, features) { super(args, opts, { ...features, queueCommandTasks: true, sbsBlueprint: true, checkBlueprint: true }); } get [ServerGenerator.COMPOSING]() { return this.asComposingTaskGroup({ async composingTemplateTask() { await this.composeWithJHipster('jhipster-nodejs:node-server'); }, }); } }