Fix plugin builds

This commit is contained in:
Gregory Schier
2025-07-07 14:17:47 -07:00
parent bd2662fbe3
commit 6c0f9377cd
18 changed files with 17 additions and 18 deletions

View File

@@ -9,7 +9,6 @@ console.log('Copying Yaak plugins to', pluginsDir);
for (const name of readdirSync(pluginsDir)) {
const dir = path.join(pluginsDir, name);
if (name.startsWith('.')) continue;
console.log('Building plugin', dir);
execSync('npm run build', { cwd: dir });
const destDir = path.join(__dirname, '../src-tauri/vendored/plugins/', name);
console.log(`Copying ${name} to ${destDir}`);