From f8358b7c94e52da868a223832f1ccc417b4beedf Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 22 Feb 2026 12:53:07 +0900 Subject: feat(repository): implement repository command with all actions Extract shared helpers (composer_home, read/write_json_file, add/remove_repository, render_value) from config.rs into config_helpers.rs module. Implement all 7 repository actions: list, add, remove, set-url, get-url, disable, enable with --append/--before/--after positioning support. Co-Authored-By: Claude Opus 4.6 --- crates/mozart/src/commands.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'crates/mozart/src/commands.rs') diff --git a/crates/mozart/src/commands.rs b/crates/mozart/src/commands.rs index cf3300f..968763f 100644 --- a/crates/mozart/src/commands.rs +++ b/crates/mozart/src/commands.rs @@ -7,6 +7,7 @@ pub mod check_platform_reqs; pub mod clear_cache; pub mod completion; pub mod config; +pub mod config_helpers; pub mod create_project; pub mod dependency; pub mod depends; -- cgit v1.3.1