fix(release): mirror bundled runtime deps

This commit is contained in:
Peter Steinberger
2026-04-15 12:28:05 +01:00
parent 7d2e068b27
commit 1bca9ba479
5 changed files with 59 additions and 4 deletions

View File

@@ -119,7 +119,7 @@ function walkJavaScriptFiles(rootDir) {
for (const entry of fs.readdirSync(current, { withFileTypes: true })) {
const fullPath = path.join(current, entry.name);
if (entry.isDirectory()) {
if (fullPath.split(path.sep).includes("extensions")) {
if (entry.name === "node_modules") {
continue;
}
queue.push(fullPath);