UNPKG

535 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.getVendorPath = exports.getTemplatePath = void 0;
4const path = require("path");
5const root = path.join(__dirname, "..", "..");
6function getTemplatePath(file) {
7 return path.join(root, "templates", file);
8}
9exports.getTemplatePath = getTemplatePath;
10function getVendorPath(file) {
11 return file == null ? path.join(root, "vendor") : path.join(root, "vendor", file);
12}
13exports.getVendorPath = getVendorPath;
14//# sourceMappingURL=pathManager.js.map
\No newline at end of file