@cestoliv/wt 0.1.0-pr1.f956696 → 0.1.0

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/cli.js CHANGED
@@ -4,11 +4,11 @@
4
4
  import { Command } from "commander";
5
5
  var program = new Command();
6
6
  program.name("wt").description("Git worktree manager").version("0.1.0").action(async () => {
7
- const { runList } = await import("./list-Q7CFJ66L.js");
7
+ const { runList } = await import("./list-ZKJZEMCV.js");
8
8
  await runList();
9
9
  });
10
10
  program.command("create [branch]").description("Create a new worktree").action(async (branch) => {
11
- const { createWorktree } = await import("./create-42OYRFQF.js");
11
+ const { createWorktree } = await import("./create-FV5XL2ON.js");
12
12
  await createWorktree(branch);
13
13
  });
14
14
  program.command("config").description("Open the config file in $EDITOR").action(async () => {
@@ -89,7 +89,7 @@ async function createWorktree(branch, options = {}) {
89
89
  if (!branch) {
90
90
  const input = await clack.text({
91
91
  message: "Branch name:",
92
- validate: (v) => !v || v.length === 0 ? "Required" : void 0
92
+ validate: (v) => v.length === 0 ? "Required" : void 0
93
93
  });
94
94
  if (clack.isCancel(input)) return;
95
95
  branch = input;
@@ -93,7 +93,7 @@ ${dirty.map((f) => ` ${f}`).join("\n")}`
93
93
  },
94
94
  onCreate: async () => {
95
95
  if (repoRoot) {
96
- const { createWorktree } = await import("./create-42OYRFQF.js");
96
+ const { createWorktree } = await import("./create-FV5XL2ON.js");
97
97
  await createWorktree(void 0, { cwd: repoRoot, store });
98
98
  }
99
99
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cestoliv/wt",
3
- "version": "0.1.0-pr1.f956696",
4
- "description": "Fast, interactive TUI to browse, create, open, and delete git worktrees across repos.",
3
+ "version": "0.1.0",
4
+ "description": "Git worktree manager",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/cestoliv/worktrees.git"
@@ -25,7 +25,6 @@
25
25
  "prepublishOnly": "npm run build",
26
26
  "test": "vitest run",
27
27
  "test:watch": "vitest",
28
- "typecheck": "tsc --noEmit",
29
28
  "lint": "biome check .",
30
29
  "format": "biome format --write ."
31
30
  },