@mcp-use/cli 3.5.1 → 3.5.2-canary.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/dist/commands/env.d.ts.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/utils/api.d.ts +2 -1
- package/dist/utils/api.d.ts.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -6708,7 +6708,7 @@ async function resolveVarId(api, server, keyOrId, branch) {
|
|
|
6708
6708
|
}
|
|
6709
6709
|
function printEnvVar(v, showValue = false) {
|
|
6710
6710
|
const envs = v.environments.map(envBadge).join(" ");
|
|
6711
|
-
const val = v.sensitive ? source_default.gray("<sensitive>") : showValue ? source_default.cyan(v.value) : source_default.gray("(hidden \u2014 use --show-values to reveal)");
|
|
6711
|
+
const val = v.sensitive || v.value === null ? source_default.gray("<sensitive>") : showValue ? source_default.cyan(v.value) : source_default.gray("(hidden \u2014 use --show-values to reveal)");
|
|
6712
6712
|
const branch = v.branch ? " " + source_default.magenta(`branch:${v.branch}`) : "";
|
|
6713
6713
|
console.log(` ${source_default.white.bold(v.key.padEnd(32))} ${val}`);
|
|
6714
6714
|
console.log(
|