Files
his/healthlink-his-ui/public/help-center/vuepress-theme-vdoing-doc/fix-lodash.js
华佗 893cbf1fe0 refactor: 彻底清除所有openhis痕迹
- 重命名目录: openhis-server-new → healthlink-his-server
- 重命名目录: openhis-ui-vue3 → healthlink-his-ui
- 重命名Java类: OpenHisApplication → HealthLinkHisApplication
- 重命名Java类: OpenHisMiniApp → HealthLinkHisMiniApp
- 重命名组件目录: OpenHis → HealthLinkHis
- 重命名样式文件: openhis.scss → healthlink-his.scss
- 重命名配置: nginx-openhis.conf → nginx-healthlink-his.conf
- 更新所有源码引用 (0个残留)
- 更新所有文档/脚本/配置中的引用
2026-06-05 13:36:28 +08:00

56 lines
1.5 KiB
JavaScript
Executable File

/**
* Fix lodash.template assignWith issue
* This script patches the lodash.template module to include assignWith
*/
const fs = require('fs');
const path = require('path');
const lodashTemplatePath = path.join(__dirname, 'node_modules', 'lodash.template', 'index.js');
if (!fs.existsSync(lodashTemplatePath)) {
console.log('lodash.template not found, skipping patch');
process.exit(0);
}
let content = fs.readFileSync(lodashTemplatePath, 'utf8');
// Check if already patched
if (content.includes('/* LODASH_TEMPLATE_PATCHED */')) {
console.log('lodash.template already patched');
process.exit(0);
}
// Simple assignWith implementation
const assignWithImpl = `
/* LODASH_TEMPLATE_PATCHED */
// Simple assignWith implementation
function assignWith(object, source, customizer) {
if (object == null) {
return object;
}
var props = Object.keys(Object(source));
var index = -1;
var length = props.length;
while (++index < length) {
var key = props[index];
var value = source[key];
var assignedValue = customizer ? customizer(object[key], value, key, object, source) : value;
if (assignedValue !== undefined) {
object[key] = assignedValue;
}
}
return object;
}
`;
// Insert at the beginning of the file after any comments
const firstLineEnd = content.indexOf('\n') + 1;
const before = content.substring(0, firstLineEnd);
const after = content.substring(firstLineEnd);
content = before + assignWithImpl + after;
fs.writeFileSync(lodashTemplatePath, content);
console.log('✓ Patched lodash.template with assignWith function');