Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/biome_module_graph/src/js_module_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ pub struct JsModuleInfoInner {
///
/// Re-exports are tracked in this map as well. The exception is "blanket"
/// re-exports, such as `export * from "other-module"`. Those are tracked in
/// [Self::forwarding_exports] instead.
/// [Self::blanket_reexports] instead.
pub exports: Exports,

/// Re-exports that apply to all symbols from another module, without
Expand Down
2 changes: 1 addition & 1 deletion crates/biome_module_graph/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ pub use js_module_info::{
JsExport, JsImport, JsImportPath, JsImportPhase, JsModuleInfo, JsModuleInfoDiagnostic,
JsOwnExport, JsReexport, ModuleResolver, SerializedJsModuleInfo,
};
pub use module_graph::{ModuleDependencies, ModuleGraph, SUPPORTED_EXTENSIONS};
pub use module_graph::{ModuleDependencies, ModuleGraph, ModuleGraphFsProxy, SUPPORTED_EXTENSIONS};
2 changes: 1 addition & 1 deletion crates/biome_module_graph/src/module_graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use crate::{
JsExport, JsModuleInfo, JsOwnExport, ModuleDiagnostic, js_module_info::JsModuleVisitor,
};

pub(crate) use fs_proxy::ModuleGraphFsProxy;
pub use fs_proxy::ModuleGraphFsProxy;

pub const SUPPORTED_EXTENSIONS: &[&str] = &[
"ts", "tsx", "mts", "cts", "js", "jsx", "mjs", "cjs", "json", "node",
Expand Down
2 changes: 1 addition & 1 deletion crates/biome_module_graph/src/module_graph/fs_proxy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use camino::{Utf8Path, Utf8PathBuf};

use super::ModuleGraph;

pub(crate) struct ModuleGraphFsProxy<'a> {
pub struct ModuleGraphFsProxy<'a> {
fs: &'a dyn FsWithResolverProxy,
module_graph: &'a ModuleGraph,
project_layout: &'a ProjectLayout,
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading