UNPKG

@nestjs/cli

Version:

Nest - modern, fast, powerful node.js web framework (@cli)

24 lines (23 loc) 814 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AbstractCollection = void 0; class AbstractCollection { constructor(collection, runner) { this.collection = collection; this.runner = runner; } async execute(name, options, extraFlags) { let command = this.buildCommandLine(name, options); command = extraFlags ? command.concat(` ${extraFlags}`) : command; await this.runner.run(command); } buildCommandLine(name, options) { return `${this.collection}:${name}${this.buildOptions(options)}`; } buildOptions(options) { return options.reduce((line, option) => { return line.concat(` ${option.toCommandString()}`); }, ''); } } exports.AbstractCollection = AbstractCollection;