feat: add branch-based plugin install for worktree workflows (#395)

This commit is contained in:
Trevin Chow
2026-03-26 11:01:56 -07:00
committed by GitHub
parent 4b44a94e23
commit e09a7426be
7 changed files with 755 additions and 75 deletions

View File

@@ -4,6 +4,7 @@ import packageJson from "../package.json"
import convert from "./commands/convert"
import install from "./commands/install"
import listCommand from "./commands/list"
import pluginPath from "./commands/plugin-path"
import sync from "./commands/sync"
const main = defineCommand({
@@ -16,6 +17,7 @@ const main = defineCommand({
convert: () => convert,
install: () => install,
list: () => listCommand,
"plugin-path": () => pluginPath,
sync: () => sync,
},
})