From 57fd759f258ae8312ff3521efc238d5008e72c2c Mon Sep 17 00:00:00 2001 From: DIYgod Date: Mon, 13 Jul 2026 11:32:42 +0800 Subject: [PATCH] fix(desktop): use js-yaml ESM exports --- apps/desktop/scripts/merge-yml.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/desktop/scripts/merge-yml.ts b/apps/desktop/scripts/merge-yml.ts index f28562c8c..12d124382 100644 --- a/apps/desktop/scripts/merge-yml.ts +++ b/apps/desktop/scripts/merge-yml.ts @@ -1,6 +1,6 @@ import fs from "node:fs" -import yaml from "js-yaml" +import * as yaml from "js-yaml" import path from "pathe" const outDir = "./out/make"