aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart-core/src/composer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/mozart-core/src/composer.rs')
-rw-r--r--crates/mozart-core/src/composer.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/crates/mozart-core/src/composer.rs b/crates/mozart-core/src/composer.rs
index dd7c9a6..84d6606 100644
--- a/crates/mozart-core/src/composer.rs
+++ b/crates/mozart-core/src/composer.rs
@@ -11,8 +11,6 @@
use std::collections::BTreeMap;
use std::path::{Path, PathBuf};
-// ─── composer_home ────────────────────────────────────────────────────────────
-
/// Return the Composer home directory, respecting `COMPOSER_HOME` and falling
/// back to the platform default using Composer-compatible logic.
///
@@ -71,8 +69,6 @@ fn use_xdg() -> bool {
|| std::path::Path::new("/etc/xdg").is_dir()
}
-// ─── ComposerConfig ───────────────────────────────────────────────────────────
-
/// Effective Composer config key/value pairs for a project.
/// Keys mirror `Composer\Config`'s defaults; values are stored as raw
/// `serde_json::Value` so callers can re-interpret them per key.
@@ -195,8 +191,6 @@ pub fn resolve_references(config: &mut ComposerConfig) {
}
}
-// ─── Composer ────────────────────────────────────────────────────────────────
-
/// Project-level Composer state. Currently only carries the merged
/// `ComposerConfig`; additional accessors (root package, locker, …) can be
/// layered on as commands need them.