micro-models-agent 0.56.2 → 0.56.3
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/main.js +0 -4
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -35879,7 +35879,6 @@ function createProgram() {
|
|
|
35879
35879
|
createSecurityCommand(program2);
|
|
35880
35880
|
createPluginCommand(program2);
|
|
35881
35881
|
program2.command("changelog").description(t("cli.changelog_title", { version })).option("--from <version>", t("cli.changelog_range", { from: "..." })).action((opts) => {
|
|
35882
|
-
console.error("[DEBUG] changelog action called");
|
|
35883
35882
|
const changelog = readChangelog("micro-models-agent");
|
|
35884
35883
|
if (!changelog) {
|
|
35885
35884
|
console.log(pc2.yellow(t("cli.changelog_not_found")));
|
|
@@ -38380,9 +38379,6 @@ async function main() {
|
|
|
38380
38379
|
const jsonMode = opts.json === true;
|
|
38381
38380
|
const reasoningLevel = opts.reasoning;
|
|
38382
38381
|
const isSubcommand = program2.args.length > 0 && cmdNames.has(program2.args[0]);
|
|
38383
|
-
console.error("[DEBUG] program.args:", program2.args);
|
|
38384
|
-
console.error("[DEBUG] cmdNames:", [...cmdNames]);
|
|
38385
|
-
console.error("[DEBUG] isSubcommand:", isSubcommand);
|
|
38386
38382
|
if (isSubcommand) {
|
|
38387
38383
|
return;
|
|
38388
38384
|
}
|