worktree-launcher 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -584,7 +584,7 @@ async function removeCommand(identifier, options) {
|
|
|
584
584
|
|
|
585
585
|
// src/index.ts
|
|
586
586
|
var program = new Command();
|
|
587
|
-
program.name("wt").description("CLI tool to streamline git worktrees with AI coding assistants").version("1.0.
|
|
587
|
+
program.name("wt").description("CLI tool to streamline git worktrees with AI coding assistants").version("1.0.3");
|
|
588
588
|
program.command("new <branch-name>").description("Create a new worktree and launch AI assistant").option("-i, --install", "Run package manager install after creating worktree").option("-s, --skip-launch", "Create worktree without launching AI assistant").action(async (branchName, options) => {
|
|
589
589
|
await newCommand(branchName, {
|
|
590
590
|
install: options.install,
|