ccmanager 0.1.10 → 0.1.11

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.
@@ -79,7 +79,7 @@ const NewWorktree = ({ onComplete, onCancel }) => {
79
79
  ":")),
80
80
  React.createElement(Box, null,
81
81
  React.createElement(Text, { color: "cyan" }, '> '),
82
- React.createElement(TextInput, { value: branch, onChange: setBranch, onSubmit: handleBranchSubmit, placeholder: "e.g., feature/new-feature" })))) : (React.createElement(Box, { flexDirection: "column" },
82
+ React.createElement(TextInput, { value: branch, onChange: setBranch, onSubmit: handleBranchSubmit, placeholder: "e.g., feature/new-feature" })))) : step === 'branch' ? (React.createElement(Box, { flexDirection: "column" },
83
83
  React.createElement(Box, { marginBottom: 1 },
84
84
  React.createElement(Text, null, "Enter branch name (directory will be auto-generated):")),
85
85
  React.createElement(Box, null,
@@ -89,7 +89,7 @@ const NewWorktree = ({ onComplete, onCancel }) => {
89
89
  React.createElement(Text, { dimColor: true },
90
90
  "Worktree will be created at:",
91
91
  ' ',
92
- React.createElement(Text, { color: "green" }, generatedPath)))))),
92
+ React.createElement(Text, { color: "green" }, generatedPath)))))) : null,
93
93
  step === 'base-branch' && (React.createElement(Box, { flexDirection: "column" },
94
94
  React.createElement(Box, { marginBottom: 1 },
95
95
  React.createElement(Text, null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccmanager",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "description": "TUI application for managing multiple Claude Code sessions across Git worktrees",
5
5
  "license": "MIT",
6
6
  "author": "Kodai Kabasawa",