Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Nov 30, 2024
1 parent 93183b9 commit d2c2b62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions turbopack/crates/turbopack-node/src/transforms/postcss.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ async fn extra_configs_changed(
.map(|path| async move {
Ok(
if matches!(&*path.get_type().await?, FileSystemEntryType::File) {
match asset_context
match *asset_context
.process(
Vc::upcast(FileSource::new(path)),
Value::new(ReferenceType::Internal(
Expand All @@ -222,7 +222,7 @@ async fn extra_configs_changed(
.await?
{
Some(module) => {
Some(any_content_changed_of_module(module).to_resolved().await?)
Some(any_content_changed_of_module(*module).to_resolved().await?)
}
None => None,
}
Expand Down

0 comments on commit d2c2b62

Please sign in to comment.