@cestoliv/wt 0.1.0-pr1.g2670404 → 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/README.md CHANGED
@@ -20,10 +20,12 @@ npm install -g @cestoliv/wt
20
20
 
21
21
  ### Pre-release builds
22
22
 
23
- Add the `publish-dev` label to a PR to publish that branch as a unique,
24
- pinned prerelease version (e.g. `0.1.0-pr12.gabc1234`). The exact install
25
- command is posted as a comment on the PR. There is no rolling `dev` channel —
26
- each build is a distinct version you install explicitly.
23
+ Add the `publish-dev` label to a PR to publish that branch under the `dev`
24
+ dist-tag (the label is removed automatically afterwards):
25
+
26
+ ```bash
27
+ npm install -g @cestoliv/wt@dev
28
+ ```
27
29
 
28
30
  ## Quick Start
29
31
 
package/dist/cli.js CHANGED
@@ -3,12 +3,12 @@
3
3
  // src/cli.ts
4
4
  import { Command } from "commander";
5
5
  var program = new Command();
6
- program.name("wt").description("Git worktree manager").version("0.1.0-pr1.g2670404").action(async () => {
7
- const { runList } = await import("./list-Q7CFJ66L.js");
6
+ program.name("wt").description("Git worktree manager").version("0.1.0").action(async () => {
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.g2670404",
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
  },