chore: use dist as the single extension output dir

This commit is contained in:
2026-05-25 14:33:52 +08:00
parent f683b1db4f
commit d7b35d6149
7 changed files with 36 additions and 16 deletions
+5
View File
@@ -0,0 +1,5 @@
import path from "node:path";
export function resolveExtensionBuildDir(projectRoot, _buildTarget) {
return path.join(projectRoot, "dist");
}