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/create_project.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'crates/mozart/src/commands/create_project.rs') diff --git a/crates/mozart/src/commands/create_project.rs b/crates/mozart/src/commands/create_project.rs index 2a8ce4f..da8108c 100644 --- a/crates/mozart/src/commands/create_project.rs +++ b/crates/mozart/src/commands/create_project.rs @@ -505,6 +505,7 @@ pub async fn execute( download_only: false, prefer_source: args.prefer_source, }, + console, ) .await?; -- cgit v1.3.1