fix import_styles use of stylance_core

This commit is contained in:
Mario Carbajal 2024-01-08 13:23:09 -03:00
parent c1ace7823e
commit 11c3ccc300
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ pub fn import_style_classes_rel(input: TokenStream) -> TokenStream {
.expect("No current path")
.join(input.value());
let (_, classes) = core::get_classes(manifest_path, &file_path).expect("Load classes");
let (_, classes) = stylance_core::get_classes(manifest_path, &file_path).expect("Load classes");
let binding = file_path.canonicalize().unwrap();
let full_path = binding.to_string_lossy();