File tree Expand file tree Collapse file tree 2 files changed +1
-11
lines changed
turbopack/crates/turbopack-cli/src Expand file tree Collapse file tree 2 files changed +1
-11
lines changed Original file line number Diff line number Diff line change @@ -57,11 +57,6 @@ use crate::{
57
57
} ,
58
58
} ;
59
59
60
- pub fn register ( ) {
61
- turbopack:: register ( ) ;
62
- include ! ( concat!( env!( "OUT_DIR" ) , "/register.rs" ) ) ;
63
- }
64
-
65
60
type Backend = TurboTasksBackend < NoopBackingStorage > ;
66
61
67
62
pub struct TurbopackBuildBuilder {
Original file line number Diff line number Diff line change @@ -349,18 +349,13 @@ async fn source(
349
349
) ) )
350
350
}
351
351
352
- pub fn register ( ) {
353
- turbopack:: register ( ) ;
354
- include ! ( concat!( env!( "OUT_DIR" ) , "/register.rs" ) ) ;
355
- }
356
-
357
352
/// Start a devserver with the given args.
358
353
pub async fn start_server ( args : & DevArguments ) -> Result < ( ) > {
359
354
let start = Instant :: now ( ) ;
360
355
361
356
#[ cfg( feature = "tokio_console" ) ]
362
357
console_subscriber:: init ( ) ;
363
- register ( ) ;
358
+ crate :: register ( ) ;
364
359
365
360
let NormalizedDirs {
366
361
project_dir,
You can’t perform that action at this time.
0 commit comments