We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90efb49 commit 5f35cbfCopy full SHA for 5f35cbf
crates/biome_test_utils/src/lib.rs
@@ -331,6 +331,10 @@ fn get_js_like_paths_in_dir(dir: &Utf8Path) -> Vec<BiomePath> {
331
.collect()
332
}
333
334
+/// Searches for a `pnpm-workspace.yaml` file adjacent to the input file
335
+/// and parses its catalog section if present.
336
+///
337
+/// Returns `None` if the workspace file is not found or parsing fails.
338
fn find_pnpm_workspace_catalog(fs: &dyn FileSystem, input_file: &Utf8Path) -> Option<Catalogs> {
339
let workspace_file = input_file.with_file_name("pnpm-workspace.yaml");
340
if !fs.path_is_file(&workspace_file) {
0 commit comments