Files
Agent-n8n/web_frontend/exhibition-demo/node_modules/tailwindcss/lib/lib/load-config.js
Yep_Q 1564396449 feat: 完善会展策划演示系统
详细说明:
- 添加了V2版本的工作流页面和结果页面
- 更新了Serena记忆文件
- 添加了详细实施计划文档
- 优化了Vite配置
- 更新了项目文档CLAUDE.md
- 构建了演示系统的dist版本
- 包含了exhibition-demo的完整依赖
2025-09-08 11:15:23 +08:00

66 lines
2.0 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
function _export(target, all) {
for(var name in all)Object.defineProperty(target, name, {
enumerable: true,
get: all[name]
});
}
_export(exports, {
useCustomJiti: function() {
return useCustomJiti;
},
loadConfig: function() {
return loadConfig;
}
});
const _jiti = /*#__PURE__*/ _interop_require_default(require("jiti"));
const _sucrase = require("sucrase");
function _interop_require_default(obj) {
return obj && obj.__esModule ? obj : {
default: obj
};
}
let jiti = null;
function useCustomJiti(_jiti) {
jiti = _jiti();
}
function lazyJiti() {
return jiti !== null && jiti !== void 0 ? jiti : jiti = (0, _jiti.default)(__filename, {
interopDefault: true,
transform: (opts)=>{
// Sucrase can't transform import.meta so we have to use Babel
if (opts.source.includes("import.meta")) {
return require("jiti/dist/babel.js")(opts);
}
return (0, _sucrase.transform)(opts.source, {
transforms: [
"typescript",
"imports"
]
});
}
});
}
function loadConfig(path) {
let config = function() {
if (!path) return {};
// Always use jiti for now. There is a a bug that occurs in Node v22.12+
// where imported files return invalid results
return lazyJiti()(path);
// Always use jiti for ESM or TS files
if (path && (path.endsWith(".mjs") || path.endsWith(".ts") || path.endsWith(".cts") || path.endsWith(".mts"))) {
return lazyJiti()(path);
}
try {
return path ? require(path) : {};
} catch {
return lazyJiti()(path);
}
}();
var _config_default;
return (_config_default = config.default) !== null && _config_default !== void 0 ? _config_default : config;
}