From 1db9e0242f01b3e4a1fd5670969882d4b30556c9 Mon Sep 17 00:00:00 2001 From: SirStendec Date: Tue, 17 Jun 2025 14:40:54 -0400 Subject: [PATCH] Add libxmljs2 to the list of dependencies allowed to run build scripts, explicitly deny the other dependencies. --- package.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 223d92cd..c32f077d 100755 --- a/package.json +++ b/package.json @@ -107,7 +107,12 @@ "glob-parent@<5.1.2": ">=5.1.2" }, "onlyBuiltDependencies": [ - "esbuild" + "esbuild", + "libxmljs2" + ], + "ignoredBuiltDependencies": [ + "@parcel/watcher", + "core-js" ] } }