@cestoliv/wt 0.1.0-pr1.f38ce15 → 0.1.0-pr1.f956696
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 +6 -4
- package/dist/cli.js +1 -1
- package/package.json +1 -1
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
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
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,7 +3,7 @@
|
|
|
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
|
|
6
|
+
program.name("wt").description("Git worktree manager").version("0.1.0").action(async () => {
|
|
7
7
|
const { runList } = await import("./list-Q7CFJ66L.js");
|
|
8
8
|
await runList();
|
|
9
9
|
});
|