UNPKG

@joergmittaglawo/dmvconfig

Version:

DMV Configuration scripts for Lawo V__matrix Distributed Multiviewers.

30 lines 961 B
"use strict"; /** * Finds the current DMV Configuration directory * @packageDocumentation * * @version 0.0.0-alpha.0 * @date 2020-04-15 * @author Mittag, Jörg (Lawo) <joerg.mittag@lawo.com> * @license SPDX-License-Identifier: MIT */ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.CURRENT_CONF_DIR = void 0; const fs_1 = require("fs"); /** * The name of the current configuration */ const current_conf_1 = __importDefault(require("./current_conf")); /** * The current configuration directory */ const conf_dir_1 = __importDefault(require("./conf_dir")); /** * The current configuration directory */ exports.CURRENT_CONF_DIR = fs_1.realpathSync(`${conf_dir_1.default}/${current_conf_1.default}`); exports.default = exports.CURRENT_CONF_DIR; //# sourceMappingURL=current_conf_dir.js.map