@flemist/mcp-project-tools 4.0.3 → 5.0.0
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/build/cli.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Command as a } from "commander";
|
|
2
|
-
import { l as c, A as p, S as l, a as f, b as v, p as g, s as m } from "./startMcpServer-
|
|
2
|
+
import { l as c, A as p, S as l, a as f, b as v, p as g, s as m } from "./startMcpServer-DSNoDm-K.js";
|
|
3
3
|
import * as s from "path";
|
|
4
4
|
const E = {
|
|
5
5
|
title: v,
|
package/build/index.d.ts
CHANGED
|
@@ -79,12 +79,12 @@ declare type ProcessManagerOptions = {
|
|
|
79
79
|
env?: Record<string, string | null> | null;
|
|
80
80
|
/**
|
|
81
81
|
* Cleanup env before applying project env:
|
|
82
|
-
* -
|
|
83
|
-
* - "clear": start with empty env
|
|
82
|
+
* - "deleteServerPaths" (default): delete variables containing server paths
|
|
84
83
|
* - "replaceServerPaths": replace server paths with project paths
|
|
85
|
-
* - "
|
|
84
|
+
* - "clear": start with empty env
|
|
85
|
+
* - false: do nothing, inherit server env
|
|
86
86
|
*/
|
|
87
|
-
envCleanup?: 'clear' | 'replaceServerPaths' | 'deleteServerPaths' |
|
|
87
|
+
envCleanup?: 'clear' | 'replaceServerPaths' | 'deleteServerPaths' | false;
|
|
88
88
|
run?: null | boolean;
|
|
89
89
|
status?: null | boolean;
|
|
90
90
|
wait?: null | boolean;
|
package/build/index.js
CHANGED