@burglekitt/worktree 0.1.0 → 0.1.1

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.
@@ -6,7 +6,6 @@ export default class Branch extends BaseCommand {
6
6
  static description: string;
7
7
  static examples: string[];
8
8
  static flags: {
9
- help: import("@oclif/core/interfaces").BooleanFlag<void>;
10
9
  source: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
11
10
  };
12
11
  private confirmNonOriginSource;
@@ -13,7 +13,6 @@ export default class Branch extends BaseCommand {
13
13
  "<%= config.bin %> <%= command.id %> my-new-branch",
14
14
  ];
15
15
  static flags = {
16
- help: Flags.help({ char: "h", description: "Show branch help" }),
17
16
  source: Flags.string({
18
17
  char: "s",
19
18
  description: "Source branch to create the worktree from",
@@ -8,7 +8,6 @@ export default class Config extends BaseCommand {
8
8
  };
9
9
  static flags: {
10
10
  list: import("@oclif/core/interfaces").BooleanFlag<boolean>;
11
- help: import("@oclif/core/interfaces").BooleanFlag<void>;
12
11
  missing: import("@oclif/core/interfaces").BooleanFlag<boolean>;
13
12
  };
14
13
  private renderList;
@@ -18,7 +18,6 @@ export default class Config extends BaseCommand {
18
18
  char: "l",
19
19
  description: "List all available variables",
20
20
  }),
21
- help: Flags.help({ char: "h", description: "Show config help" }),
22
21
  missing: Flags.boolean({
23
22
  char: "m",
24
23
  description: "Only prompt missing variables",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burglekitt/worktree",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A CLI tool for managing git worktrees with enhanced workflow features",
5
5
  "main": "./bin/run.js",
6
6
  "type": "module",
@@ -32,11 +32,17 @@
32
32
  "license": "MIT",
33
33
  "packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be",
34
34
  "bin": {
35
- "worktree": "./bin/run.js",
36
- "@burglekitt/worktree": "./bin/run.js"
35
+ "@burglekitt/worktree": "./bin/run.js",
36
+ "worktree": "./bin/run.js"
37
37
  },
38
38
  "oclif": {
39
- "bin": "worktree",
39
+ "bin": "@burglekitt/worktree",
40
+ "binAliases": [
41
+ "worktree"
42
+ ],
43
+ "plugins": [
44
+ "@oclif/plugin-*"
45
+ ],
40
46
  "commands": "./dist/commands",
41
47
  "dirname": "worktree",
42
48
  "topicSeparator": " "
@@ -44,6 +50,8 @@
44
50
  "dependencies": {
45
51
  "@inquirer/prompts": "^8.3.0",
46
52
  "@oclif/core": "^4.8.3",
53
+ "@oclif/plugin-help": "^6.2.37",
54
+ "@oclif/plugin-not-found": "^3.2.74",
47
55
  "chalk": "^5.6.2",
48
56
  "glob": "^13.0.6",
49
57
  "ora": "^9.3.0"