poet 0.7.0

Static site generator with optional MCP server and LLM SEO optimizations
Documentation
use std::path::Path;
use std::sync::Arc;

use anyhow::Result;
use esbuild_metafile::EsbuildMetaFile;
use tokio::fs;

use crate::filesystem::storage::create_parent_directories::create_parent_directories;

pub async fn copy_esbuild_metafile_assets_to(
    esbuild_metafile: Arc<EsbuildMetaFile>,
    output_directory: &Path,
) -> Result<()> {
    for asset_path in esbuild_metafile.get_output_paths().iter() {
        let target_path = output_directory.join(asset_path);

        create_parent_directories(&target_path).await?;

        fs::copy(asset_path, target_path).await?;
    }

    Ok(())
}