Skip to content

Commit

Permalink
Make BundleConfiguration object public (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
jiwonz authored Dec 1, 2024
1 parent 617e621 commit e72e8f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/frontend/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ mod worker;

use std::path::Path;

pub use configuration::{Configuration, GeneratorParameters};
pub use configuration::{BundleConfiguration, Configuration, GeneratorParameters};
pub use error::{DarkluaError, DarkluaResult};
pub use options::Options;
pub use process_result::ProcessResult;
Expand Down
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ pub mod rules;
mod utils;

pub use frontend::{
convert_data, process, Configuration, DarkluaError, GeneratorParameters, Options, Resources,
convert_data, process, BundleConfiguration, Configuration, DarkluaError, GeneratorParameters,
Options, Resources,
};
pub use parser::{Parser, ParserError};

0 comments on commit e72e8f2

Please sign in to comment.