1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
//! Project build operations
//!
//! This module provides functionality for building and cleaning ggen projects.
//! It handles build orchestration and cleanup of build artifacts.
//!
//! ## Features
//!
//! - **Project Building**: Build a project from a given path
//! - **Clean Operations**: Remove build artifacts (target directory)
//! - **Path Validation**: Validate project paths before operations
//!
//! ## Examples
//!
//! ### Building a Project
//!
//! ```rust,no_run
//! use ggen_domain::project::build::build_project;
//! use std::path::Path;
//!
//! # async fn example() -> anyhow::Result<()> {
//! build_project(Path::new("my-project")).await?;
//! # Ok(())
//! # }
//! ```
//!
//! ### Cleaning Build Artifacts
//!
//! ```rust,no_run
//! use ggen_domain::project::build::clean_project;
//! use std::path::Path;
//!
//! # async fn example() -> anyhow::Result<()> {
//! clean_project(Path::new("my-project")).await?;
//! # Ok(())
//! # }
//! ```
use ;
use Path;
/// Build a project
pub async
/// Clean build artifacts
pub async