repowisestage 0.0.44 → 0.0.45
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/bin/repowise.js +2 -2
- package/package.json +1 -1
package/dist/bin/repowise.js
CHANGED
|
@@ -10481,13 +10481,13 @@ Done \u2014 ${report.removed.length} removed, ${report.skipped.length} skipped.
|
|
|
10481
10481
|
}
|
|
10482
10482
|
|
|
10483
10483
|
// src/commands/mcp-shim.ts
|
|
10484
|
+
init_config_dir();
|
|
10484
10485
|
import { promises as fs17 } from "fs";
|
|
10485
10486
|
import { createInterface as createInterface2 } from "readline";
|
|
10486
|
-
import { homedir as homedir9 } from "os";
|
|
10487
10487
|
import { join as join44 } from "path";
|
|
10488
10488
|
var DEFAULT_MAX = 200 * 1024;
|
|
10489
10489
|
async function mcpShim(opts) {
|
|
10490
|
-
const endpointPath = opts.endpointFile ?? join44(
|
|
10490
|
+
const endpointPath = opts.endpointFile ?? join44(getConfigDir(), "listener.endpoint");
|
|
10491
10491
|
const stdin = opts.stdin ?? process.stdin;
|
|
10492
10492
|
const stdout = opts.stdout ?? process.stdout;
|
|
10493
10493
|
const stderr = opts.stderr ?? process.stderr;
|