@task-mcp/cli 1.0.23 → 1.0.25

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/dist/index.js +5 -4
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -119,7 +119,8 @@ async function dashboard(workspaceName) {
119
119
  tasks = tasks.filter((t) => t.workspace === selectedWorkspace.name);
120
120
  } else if (workspaces.length === 1) {
121
121
  selectedWorkspace = workspaces[0];
122
- tasks = await listTasks();
122
+ tasks = await listAllTasks();
123
+ tasks = tasks.filter((t) => t.workspace === selectedWorkspace.name);
123
124
  } else {
124
125
  tasks = await listAllTasks();
125
126
  }
@@ -563,7 +564,7 @@ async function inboxCountCmd() {
563
564
  // package.json
564
565
  var package_default = {
565
566
  name: "@task-mcp/cli",
566
- version: "1.0.22",
567
+ version: "1.0.24",
567
568
  description: "Zero-dependency CLI for task-mcp with Bun native visualization",
568
569
  type: "module",
569
570
  bin: {
@@ -595,8 +596,8 @@ var package_default = {
595
596
  directory: "packages/cli"
596
597
  },
597
598
  dependencies: {
598
- "@task-mcp/mcp-server": "workspace:*",
599
- "@task-mcp/shared": "workspace:*"
599
+ "@task-mcp/mcp-server": "^1.0.27",
600
+ "@task-mcp/shared": "^1.0.22"
600
601
  },
601
602
  devDependencies: {
602
603
  "@types/bun": "^1.1.14",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@task-mcp/cli",
3
- "version": "1.0.23",
3
+ "version": "1.0.25",
4
4
  "description": "Zero-dependency CLI for task-mcp with Bun native visualization",
5
5
  "type": "module",
6
6
  "bin": {
@@ -32,8 +32,8 @@
32
32
  "directory": "packages/cli"
33
33
  },
34
34
  "dependencies": {
35
- "@task-mcp/mcp-server": "workspace:*",
36
- "@task-mcp/shared": "workspace:*"
35
+ "@task-mcp/mcp-server": "^1.0.27",
36
+ "@task-mcp/shared": "^1.0.22"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/bun": "^1.1.14",