UNPKG

@nestjs/cli

Version:

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

35 lines (34 loc) 1.57 kB
"use strict"; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.AbstractCollection = void 0; class AbstractCollection { constructor(collection, runner) { this.collection = collection; this.runner = runner; } execute(name, options, extraFlags) { return __awaiter(this, void 0, void 0, function* () { let command = this.buildCommandLine(name, options); command = extraFlags ? command.concat(` ${extraFlags}`) : command; yield 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;