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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. 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.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,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "worktree-launcher",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "CLI tool for managing git worktrees with AI coding assistants",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",