@viewdo/dxp-story-cli
Version:
DXP Story Management CLI
43 lines • 2.45 kB
JavaScript
;
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
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.BuildCommand = void 0;
const CommandBase_1 = require("./support/CommandBase");
const typedi_1 = require("typedi");
const app_1 = require("../app");
let BuildCommand = class BuildCommand extends CommandBase_1.CommandBase {
run(options) {
return __awaiter(this, void 0, void 0, function* () {
this.app = new app_1.App(options);
this.app.console_service.log(`Building Stories`.blue);
let story_keys = options.keys.length > 0 ?
options.keys : options.all ? this.app.configuration_manager.story_keys
: yield this.app.prompt_service
.selectFromKeys('Story', this.app.configuration_manager.story_keys, 'Build', options.all);
if (story_keys) {
yield this.app.build_manager.buildStories(story_keys);
this.app.console_service.log(`Build complete`.green);
}
return 0;
});
}
};
exports.BuildCommand = BuildCommand;
exports.BuildCommand = BuildCommand = __decorate([
(0, typedi_1.Service)()
], BuildCommand);
//# sourceMappingURL=build.js.map