mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-03 00:19:05 +08:00
* feat: pnpm new * Refactor build and release workflows, update dependencies Switch build scripts and workflows from npm to pnpm, update build and artifact paths, and simplify release workflow by removing version detection and changelog steps. Add new dependencies (silk-wasm, express, ws, node-pty-prebuilt-multiarch), update exports in package.json files, and add vite config for napcat-framework. Also, rename manifest.json for framework package and fix static asset copying in shell build config.
23 lines
796 B
TypeScript
23 lines
796 B
TypeScript
export function deepMerge<T extends Record<string, any>> (target: T, source: Partial<T>): T {
|
||
for (const key in source) {
|
||
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
||
// 如果 source[key] 为 undefined,则跳过(保留 target[key])
|
||
if (source[key] === undefined) {
|
||
continue;
|
||
}
|
||
if (
|
||
target[key] !== undefined &&
|
||
typeof target[key] === 'object' &&
|
||
!Array.isArray(target[key]) &&
|
||
typeof source[key] === 'object' &&
|
||
!Array.isArray(source[key])
|
||
) {
|
||
target[key] = deepMerge({ ...target[key] }, source[key]!) as T[Extract<keyof T, string>];
|
||
} else {
|
||
target[key] = source[key]! as T[Extract<keyof T, string>];
|
||
}
|
||
}
|
||
}
|
||
return target;
|
||
}
|