Skip to content

Commit

Permalink
Bumping oxc-resolver and adding debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasLYang committed Jan 22, 2025
1 parent 7828e2c commit 120bb13
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 6 deletions.
31 changes: 26 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ notify = "6.1.1"
num_cpus = "1.15.0"
once_cell = "1.17.1"
owo-colors = "3.5.0"
oxc_resolver = { version = "2.1.0" }
oxc_resolver = { version = "4.0.0" }
parking_lot = "0.12.1"
path-clean = "1.0.1"
pathdiff = "0.2.1"
Expand Down
2 changes: 2 additions & 0 deletions crates/turbo-trace/src/tracer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,7 @@ impl Tracer {
let shared_self = Arc::new(self);

for file in files {
eprintln!("file: {:?}", file);
let shared_self = shared_self.clone();
let resolver = resolver.clone();
futures.spawn(async move {
Expand All @@ -454,6 +455,7 @@ impl Tracer {
};

for import in imported_files {
debug!("import: {:?}", import);
if shared_self
.files
.iter()
Expand Down

0 comments on commit 120bb13

Please sign in to comment.