bailiff
Version:
A config manager
52 lines (51 loc) • 2.3 kB
JavaScript
;
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 };
};
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
result["default"] = mod;
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
const centralStore_1 = __importDefault(require("./stores/centralStore"));
const dotenvStore_1 = __importDefault(require("./stores/dotenvStore"));
const customStore_1 = __importDefault(require("./stores/customStore"));
const callsite_1 = __importDefault(require("callsite"));
const path_1 = __importDefault(require("path"));
const _ = __importStar(require("lodash"));
class Bailiff {
static addStore(config) {
const stack = callsite_1.default(), requester = stack[1].getFileName();
customStore_1.default.add(config, path_1.default.dirname(requester));
return this;
}
static get(name) {
return _.reduce(this.__configStoresPrioritized, (value, store) => {
return value ? value : store.get(name);
}, "");
}
static loadCentralConfigs() {
return __awaiter(this, void 0, void 0, function* () {
yield centralStore_1.default.loadCentralConfigs();
return this;
});
}
}
exports.default = Bailiff;
Bailiff.__configStoresPrioritized = [
customStore_1.default,
dotenvStore_1.default,
centralStore_1.default
];