fix(plugin-path): align packaged dir with plugin id to remove mismatch warning

This commit is contained in:
2026-02-25 23:27:16 +00:00
parent f5ec6f9b15
commit 7f1d6bb3f7
3 changed files with 8 additions and 8 deletions

View File

@@ -3,7 +3,7 @@ import path from "node:path";
const root = process.cwd();
const pluginDir = path.join(root, "plugin");
const outDir = path.join(root, "dist", "plugin");
const outDir = path.join(root, "dist", "whispergate");
fs.rmSync(outDir, { recursive: true, force: true });
fs.mkdirSync(outDir, { recursive: true });