mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-25 19:01:38 +01:00
Merge main into proxy branch (formatting and docs)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -23,7 +23,15 @@ for (const name of readdirSync(pluginsDir)) {
|
||||
console.log(`Skipping ${name} (external plugin)`);
|
||||
continue;
|
||||
}
|
||||
const destDir = path.join( __dirname, "..", 'crates-tauri','yaak-app-client','vendored','plugins', name);
|
||||
const destDir = path.join(
|
||||
__dirname,
|
||||
"..",
|
||||
"crates-tauri",
|
||||
"yaak-app-client",
|
||||
"vendored",
|
||||
"plugins",
|
||||
name,
|
||||
);
|
||||
mkdirSync(destDir, { recursive: true });
|
||||
console.log(`Copying ${name} to ${destDir}`);
|
||||
cpSync(path.join(dir, "package.json"), path.join(destDir, "package.json"));
|
||||
|
||||
Reference in New Issue
Block a user