@leanmcp/cli 0.5.11-alpha.76.3c8ac68 → 0.5.11-alpha.77.04cb265

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 +3 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1069,6 +1069,9 @@ async function runTypeScriptCompiler(cwd) {
1069
1069
  ], {
1070
1070
  cwd,
1071
1071
  preferLocal: true,
1072
+ // Must use 'pipe' to capture output (default 'inherit' doesn't capture)
1073
+ stdout: "pipe",
1074
+ stderr: "pipe",
1072
1075
  all: true
1073
1076
  });
1074
1077
  } catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leanmcp/cli",
3
- "version": "0.5.11-alpha.76.3c8ac68",
3
+ "version": "0.5.11-alpha.77.04cb265",
4
4
  "description": "Command-line interface for scaffolding LeanMCP projects",
5
5
  "bin": {
6
6
  "leanmcp": "bin/leanmcp.js"