create-claude-workspace 1.1.47 → 1.1.48
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/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -144,7 +144,7 @@ function writeKitVersion(targetDir) {
|
|
|
144
144
|
}
|
|
145
145
|
function ensureGitignore(targetDir) {
|
|
146
146
|
const gitignorePath = join(targetDir, '.gitignore');
|
|
147
|
-
const entries = ['.npmrc', '.docker-compose.auth.yml', '.claude/autonomous.log', '.claude/autonomous.lock', '.claude/autonomous-state.json', '.claude/.kit-version', '.worktrees/'];
|
|
147
|
+
const entries = ['.npmrc', '.docker-compose.auth.yml', '.claude/autonomous.log', '.claude/autonomous.log.1', '.claude/autonomous.lock', '.claude/autonomous-state.json', '.claude/.kit-version', '.worktrees/'];
|
|
148
148
|
if (existsSync(gitignorePath)) {
|
|
149
149
|
let content = readFileSync(gitignorePath, 'utf-8');
|
|
150
150
|
const added = [];
|