@viewdo/dxp-story-cli
Version:
DXP Story Management CLI
54 lines • 2.83 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());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.JsonFromYamlCommand = void 0;
const fs_1 = __importDefault(require("fs"));
const path_1 = __importDefault(require("path"));
const CommandBase_1 = require("./support/CommandBase");
const typedi_1 = require("typedi");
const app_1 = require("../app");
let JsonFromYamlCommand = class JsonFromYamlCommand extends CommandBase_1.CommandBase {
run(options) {
return __awaiter(this, void 0, void 0, function* () {
const app = new app_1.App(options);
let { file, output } = options;
if (output == undefined) {
output = file.replace('.yml', '.json');
}
let json_object = app.format_service.fromContent(file);
this._ensureDirectoryExistence(output);
fs_1.default.writeFileSync(output, JSON.stringify(json_object, null, 2));
return 0;
});
}
_ensureDirectoryExistence(filePath) {
var dirname = path_1.default.dirname(filePath);
if (fs_1.default.existsSync(dirname)) {
return true;
}
this._ensureDirectoryExistence(dirname);
fs_1.default.mkdirSync(dirname);
}
};
exports.JsonFromYamlCommand = JsonFromYamlCommand;
exports.JsonFromYamlCommand = JsonFromYamlCommand = __decorate([
(0, typedi_1.Service)()
], JsonFromYamlCommand);
//# sourceMappingURL=json-from-yaml.js.map