chore(deps): pin dependencies and enforce 14-day update cooldown (#27948)

This commit is contained in:
Gal Zahavi
2026-06-18 16:58:35 -07:00
committed by GitHub
parent c427d18fea
commit 93844dfa10
71 changed files with 4647 additions and 1457 deletions
+3 -4
View File
@@ -158,16 +158,15 @@ export class McpPromptLoader implements ICommandLoader {
return [];
}
const indexOfFirstSpace = invocation.raw.indexOf(' ') + 1;
let promptInputs =
const parsedInputs =
indexOfFirstSpace === 0
? {}
: this.parseArgs(
invocation.raw.substring(indexOfFirstSpace),
prompt.arguments,
);
if (promptInputs instanceof Error) {
promptInputs = {};
}
const promptInputs =
parsedInputs instanceof Error ? {} : parsedInputs;
const providedArgNames = Object.keys(promptInputs);
const unusedArguments =