Skip to content

Commit ace8fd5

Browse files
committed
fmt
1 parent 9a1259d commit ace8fd5

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

turbopack/crates/turbopack-cli/src/build/mod.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,11 @@ async fn build_internal(
199199
target: Target,
200200
) -> Result<Vc<()>> {
201201
let output_fs = output_fs(project_dir.clone());
202-
let project_fs = project_fs(root_dir.clone(), /** watch= */false);
202+
let project_fs = project_fs(
203+
root_dir.clone(),
204+
/** watch= */
205+
false,
206+
);
203207
let project_relative = project_dir.strip_prefix(&*root_dir).unwrap();
204208
let project_relative: RcStr = project_relative
205209
.strip_prefix(MAIN_SEPARATOR)

turbopack/crates/turbopack-cli/src/dev/mod.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,11 @@ async fn source(
264264
.into();
265265

266266
let output_fs = output_fs(project_dir);
267-
let fs: Vc<Box<dyn FileSystem>> = project_fs(root_dir, /** watch= */true);
267+
let fs: Vc<Box<dyn FileSystem>> = project_fs(
268+
root_dir,
269+
/** watch= */
270+
true,
271+
);
268272
let root_path = fs.root().to_resolved().await?;
269273
let project_path = root_path.join(project_relative).to_resolved().await?;
270274

0 commit comments

Comments
 (0)