feat: initial auto connect nodes
All checks were successful
Deploy to GitHub Pages / build_site (push) Successful in 2m35s

This commit is contained in:
2025-11-26 17:27:32 +01:00
parent d3a9b3f056
commit e5658b8a7e
11 changed files with 173 additions and 99 deletions

View File

@@ -4,7 +4,7 @@ import { clone } from "./helpers/index.js";
import { createLogger } from "@nodes/utils";
const diff = create({
objectHash: function (obj, index) {
objectHash: function(obj, index) {
if (obj === null) return obj;
if ("id" in obj) return obj.id as string;
if ("_id" in obj) return obj._id as string;
@@ -16,7 +16,7 @@ const diff = create({
});
const log = createLogger("history");
// log.mute();
log.mute();
export class HistoryManager {
index: number = -1;