Skip to content

v2.3.1

Choose a tag to compare

@bitjaru bitjaru released this 08 Dec 12:04
· 29 commits to main since this release

릴리즈 노트:

🐛 Bug Fix - Single Repository Detection

Fixed: CodeSyncer now correctly detects single-repo mode when running inside a repository that contains subdirectories.

What Changed

  • Current directory is checked first before scanning subdirectories
  • If current directory is a repository → Single repo mode (priority)
  • If current directory is NOT a repository → Scan subdirectories

Before (v2.3.0)

~/my-project/ ← Has package.json
└── subfolder/ ← Also has package.json

→ Detected as multi-repo (wrong!)

After (v2.3.1)

~/my-project/ ← Has package.json
└── subfolder/ ← Also has package.json

→ Detected as single-repo (correct!)

Installation

npm install -g codesyncer@2.3.1

Full Changelog: https://github.com/bitjaru/codesyncer/compare/v2.3.0...v2.3.1