From 7e45efd8a1f488b1a684f9efe31ff39009fc9e54 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Mon, 23 Feb 2026 14:50:01 +0900 Subject: fix(cli): align install/update output with Composer conventions - Migrate eprintln\! to Console for consistent colored output - Use Composer terminology in lock file operations: Locking instead of Installing, Upgrading/Downgrading instead of Updating - Add is_downgrade() helper to distinguish upgrades from downgrades - Pass Console through install_from_lock for proper output handling Co-Authored-By: Claude Opus 4.6 --- crates/mozart/src/commands/remove.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'crates/mozart/src/commands/remove.rs') diff --git a/crates/mozart/src/commands/remove.rs b/crates/mozart/src/commands/remove.rs index 6d3b5e2..4808dd0 100644 --- a/crates/mozart/src/commands/remove.rs +++ b/crates/mozart/src/commands/remove.rs @@ -441,6 +441,7 @@ pub async fn execute( download_only: false, prefer_source: false, }, + console, ) .await?; } @@ -582,6 +583,7 @@ async fn remove_unused( download_only: false, prefer_source: false, }, + console, ) .await?; } -- cgit v1.3.1