mise 2024.12.18

The front-end to your dev env
use crate::config::env_directive::EnvResults;
use crate::dirs;
use crate::plugins::vfox_plugin::VfoxPlugin;
use crate::Result;
use heck::ToKebabCase;
use std::path::PathBuf;
use toml::Value;

impl EnvResults {
    pub fn module(r: &mut EnvResults, source: PathBuf, name: String, value: &Value) -> Result<()> {
        let path = dirs::PLUGINS.join(name.to_kebab_case());
        let plugin = VfoxPlugin::new(name, path);
        if let Some(env) = plugin.mise_env(value)? {
            for (k, v) in env {
                r.env.insert(k, (v, source.clone()));
            }
        }
        if let Some(path) = plugin.mise_path(value)? {
            for p in path {
                r.env_paths.push(p.into());
            }
        }
        Ok(())
    }
}