We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b611f7 commit 5184d40Copy full SHA for 5184d40
src/build/patches.ts
@@ -375,6 +375,10 @@ export async function readPatch(fileUrl: URL): Promise<any> {
375
return parseKDL(text);
376
}
377
378
+/**
379
+ * Remove all name fields from the object and its children as we don't want
380
+ * the names to be part of the removal.
381
+ */
382
function removeNamesDeep(obj: unknown): unknown {
383
if (Array.isArray(obj)) {
384
return obj.map(removeNamesDeep);
0 commit comments