lux-cli 0.38.1

A luxurious package manager for Lua
Documentation
use std::path::PathBuf;

use clap::Args;
use lux_lib::{
    config::{Config, ConfigBuilder},
    operations::DistProjectBin,
    package::PackageName,
    tree::FlatDistTree,
    workspace::Workspace,
};
use miette::{IntoDiagnostic, Result};
use tempfile::tempdir;

use crate::args::OutputFormat;

#[derive(Args)]
pub struct Bin {
    /// Output path for the compiled binary.{n}
    /// Defaults to `<package>[.exe]` in the current directory.
    #[arg(short, long, visible_short_alias = 'o')]
    pub output: Option<PathBuf>,

    /// Package to compile.{n}
    /// Prioritises local projects if in a workspace.{n}
    /// If not set, lux will attempt to compile the current project.{n}
    /// Must be set in multi-project workspaces.
    #[arg(short, long, visible_short_alias = 'p')]
    package: Option<PackageName>,

    #[arg(long, default_value = "text", value_enum, ignore_case = true)]
    output_format: OutputFormat,
}

pub async fn bin(data: Bin, config: Config) -> Result<()> {
    let staging_dir = tempdir().into_diagnostic()?;
    let config = ConfigBuilder::from(config)
        .wrap_bin_scripts(Some(false))
        .user_tree(Some(staging_dir.path().to_path_buf()))
        .build()?;

    let workspace = Workspace::current_or_err()?;
    let project = match &data.package {
        None => workspace.single_member()?,
        Some(package) => workspace.select_member(package)?,
    };

    let lua_version = project.lua_version(&config)?;
    let tree = FlatDistTree::new(staging_dir.path().to_path_buf(), lua_version, &config)?;

    let out = DistProjectBin::new()
        .project(project)
        .config(&config)
        .tree(&tree)
        .maybe_output(data.output)
        .compile()
        .await
        .into_diagnostic()?;

    match data.output_format {
        OutputFormat::Json => println!("{}", serde_json::to_string(&out).into_diagnostic()?),
        OutputFormat::Text => println!("Binary written to {}", out.display()),
    }

    Ok(())
}