We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61ce0cb commit 4bc9ed3Copy full SHA for 4bc9ed3
crates/next-core/src/emit.rs
@@ -1,4 +1,5 @@
1
use anyhow::Result;
2
+use rustc_hash::FxHashSet;
3
use tracing::Instrument;
4
use turbo_tasks::{
5
graph::{AdjacencyMap, GraphTraversal},
@@ -112,6 +113,8 @@ pub async fn all_assets_from_entries(entries: Vc<OutputAssets>) -> Result<Vc<Out
112
113
.completed()?
114
.into_inner()
115
.into_reverse_topological()
116
+ .collect::<FxHashSet<_>>()
117
+ .into_iter()
118
.collect(),
119
))
120
}
0 commit comments