chore(dev-setup): 🔧 Add dependency resolution script to detect and fix missing/conflicting dev dependencies

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Quinn Ftw 2026-03-02 21:06:54 -08:00
parent c832d0344f
commit b3f67cfd5d

View file

@ -175,7 +175,7 @@ class DependencyFixer {
return Object.keys(obj)
.sort()
.reduce((sorted, key) => {
sorted[key] = obj[key];
sorted[key] = obj[key]!;
return sorted;
}, {} as Record<string, string>);
}