(pluginName: string)
| 274 | } |
| 275 | |
| 276 | async function resolveBundledPluginPath(pluginName: string): Promise<string | null> { |
| 277 | const repoRoot = fileURLToPath(new URL("../..", import.meta.url)) |
| 278 | return await resolvePluginRoot(repoRoot, pluginName) |
| 279 | } |
| 280 | |
| 281 | async function resolveGitHubPluginPath(pluginName: string, branch?: string): Promise<ResolvedPluginPath> { |
| 282 | const tempRoot = await fs.mkdtemp(path.join(os.tmpdir(), "compound-plugin-")) |
no test coverage detected