From 5465efea84d165c530a41b7cdc725aa0812f9954 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Tue, 18 Nov 2025 08:53:55 -0800 Subject: [PATCH] Don't build in vendor-plugins --- scripts/vendor-plugins.cjs | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/vendor-plugins.cjs b/scripts/vendor-plugins.cjs index b2ad8f6e..81361ae9 100644 --- a/scripts/vendor-plugins.cjs +++ b/scripts/vendor-plugins.cjs @@ -1,6 +1,5 @@ const { readdirSync, cpSync } = require('node:fs'); const path = require('node:path'); -const { execSync } = require('node:child_process'); const pluginsDir = path.join(__dirname, '..', 'plugins'); @@ -9,7 +8,6 @@ console.log('Copying Yaak plugins to', pluginsDir); for (const name of readdirSync(pluginsDir)) { const dir = path.join(pluginsDir, name); if (name.startsWith('.')) continue; - execSync('npm run build', { cwd: dir }); const destDir = path.join(__dirname, '../src-tauri/vendored/plugins/', name); console.log(`Copying ${name} to ${destDir}`); cpSync(path.join(dir, 'package.json'), path.join(destDir, 'package.json'));