UNPKG

1.7 kBJavaScriptView Raw
1"use strict";
2var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3 function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4 return new (P || (P = Promise))(function (resolve, reject) {
5 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6 function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7 function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8 step((generator = generator.apply(thisArg, _arguments || [])).next());
9 });
10};
11var __importDefault = (this && this.__importDefault) || function (mod) {
12 return (mod && mod.__esModule) ? mod : { "default": mod };
13};
14Object.defineProperty(exports, "__esModule", { value: true });
15const path_1 = __importDefault(require("path"));
16const fs_extra_1 = __importDefault(require("fs-extra"));
17const config_1 = require("./config");
18const configResolver = new config_1.ConfigResolver('.hygen.js', {
19 exists: fs_extra_1.default.exists,
20 // $FlowFixMe
21 load: f => Promise.resolve(require(f)),
22 none: _ => ({}),
23});
24exports.default = (config) => __awaiter(void 0, void 0, void 0, function* () {
25 const { cwd, templates } = config;
26 const resolvedTemplates = [process.env.HYGEN_TMPLS, path_1.default.join(cwd, '_templates')].find(_ => _ && fs_extra_1.default.existsSync(_)) || templates;
27 return Object.assign(Object.assign(Object.assign({}, config), { templates: resolvedTemplates }), (yield configResolver.resolve(cwd)));
28});
29//# sourceMappingURL=config-resolver.js.map
\No newline at end of file