sleepcode 1.4.2 → 1.4.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sleepcode",
3
- "version": "1.4.2",
3
+ "version": "1.4.3",
4
4
  "description": "AI codes while you sleep — Claude AI 야간 자동화 세팅 CLI",
5
5
  "bin": {
6
6
  "sleepcode": "./bin/index.js"
@@ -28,7 +28,7 @@ while ($true) {
28
28
  # 미완료 태스크 확인
29
29
  $remaining = 0
30
30
  if (Test-Path .sleepcode/tasks.md) {
31
- $remaining = (Select-String -Pattern '\[ \]' -Path .sleepcode/tasks.md -SimpleMatch).Count
31
+ $remaining = (Select-String -Pattern '[ ]' -Path .sleepcode/tasks.md -SimpleMatch).Count
32
32
  }
33
33
  Log "남은 태스크: ${remaining}개"
34
34