@hasna/todos 0.11.26 → 0.11.27

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/cli/index.js CHANGED
@@ -35681,7 +35681,7 @@ program2.command("mine").description("Show tasks assigned to you, grouped by sta
35681
35681
  const globalOpts = program2.opts();
35682
35682
  const db = getDatabase();
35683
35683
  const { listTasks: listTasks2 } = (init_tasks(), __toCommonJS(exports_tasks));
35684
- const projectId = autoProject(globalOpts) || undefined;
35684
+ const projectId = globalOpts.project ? autoProject(globalOpts) || undefined : undefined;
35685
35685
  const filter = { assigned_to: agent };
35686
35686
  if (projectId)
35687
35687
  filter.project_id = projectId;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hasna/todos",
3
- "version": "0.11.26",
3
+ "version": "0.11.27",
4
4
  "description": "Universal task management for AI coding agents - CLI + MCP server + interactive TUI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",