@leo-alvarenga/pi-todo-list 0.7.1 → 0.7.2

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/package.json +1 -1
  2. package/src/core.ts +1 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leo-alvarenga/pi-todo-list",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
4
4
  "description": "Session-aware todo list overlay for Pi: todo tool, /todos command, and a live TUI panel",
5
5
  "license": "MIT",
6
6
  "repository": "github.com/leo-alvarenga/pi-mono",
package/src/core.ts CHANGED
@@ -227,8 +227,7 @@ function list(state: TodoState): { text: string } {
227
227
  return {
228
228
  text: state.todos
229
229
  .map(
230
- (t) =>
231
- `[${t.status === "completed" ? "x" : " "}] #${t.id}: ${t.text}`,
230
+ (t) => `[${t.status === "completed" ? "x" : " "}] #${t.id}: ${t.text}`,
232
231
  )
233
232
  .join("\n"),
234
233
  };