mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-10 00:02:41 +08:00
13 lines
477 B
JavaScript
13 lines
477 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.getTemplatePath = getTemplatePath;
|
|
exports.getVendorPath = getVendorPath;
|
|
const path = require("path");
|
|
const root = path.join(__dirname, "..", "..");
|
|
function getTemplatePath(file) {
|
|
return path.join(root, "templates", file);
|
|
}
|
|
function getVendorPath(file) {
|
|
return file == null ? path.join(root, "vendor") : path.join(root, "vendor", file);
|
|
}
|
|
//# sourceMappingURL=pathManager.js.map
|