slopcannon 0.1.4 → 0.1.5

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/cli.js +2 -2
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -1942,7 +1942,7 @@ slopcannon - Create a git worktree. Launch Claude Code. Ship slop.
1942
1942
 
1943
1943
  Usage:
1944
1944
  slopcannon Interactive TUI
1945
- slopcannon cleanup Clean up merged/stale worktrees
1945
+ slopcannon cleanup|clean Clean up merged/stale worktrees
1946
1946
  slopcannon config Configure settings
1947
1947
  slopcannon --path-file <path> Write worktree path to file (for shell function)
1948
1948
  slopcannon --help Show this help
@@ -1963,7 +1963,7 @@ function parseArgs() {
1963
1963
  result.pathFile = args[++i];
1964
1964
  } else if (args[i] === "config") {
1965
1965
  result.config = true;
1966
- } else if (args[i] === "cleanup") {
1966
+ } else if (args[i] === "cleanup" || args[i] === "clean") {
1967
1967
  result.cleanup = true;
1968
1968
  } else if (!args[i].startsWith("-")) {
1969
1969
  console.error(`Unknown command: ${args[i]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slopcannon",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Create a git worktree. Launch Claude Code. Ship slop.",
5
5
  "type": "module",
6
6
  "bin": {