From 58571377f95a4961f313f632480cdef83870c54e Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Sun, 22 Mar 2026 13:55:50 -0600 Subject: [PATCH] devops: externalize peer dependencies These should NOT be bundled. --- build.mts | 1 + 1 file changed, 1 insertion(+) diff --git a/build.mts b/build.mts index 29f94c8..b009ce4 100755 --- a/build.mts +++ b/build.mts @@ -32,6 +32,7 @@ const { errors } = await esbuild.build({ // Bundle, but keep un-bundled all public dependencies. external: Object.keys({ ...pkg.dependencies, + ...pkg.peerDependencies, }), minify: false, });