Skip to content

Commit

Permalink
style(transformer): re-order dependencies (#6659)
Browse files Browse the repository at this point in the history
Nit. Move `oxc_*` dependencies to first in list.
  • Loading branch information
overlookmotel committed Oct 18, 2024
1 parent 683c344 commit 9d43a11
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions crates/oxc_transformer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ test = true
doctest = false

[dependencies]
base64 = { workspace = true }
cow-utils = { workspace = true }
dashmap = { workspace = true }
indexmap = { workspace = true }
oxc-browserslist = { workspace = true }
oxc_allocator = { workspace = true }
oxc_ast = { workspace = true }
Expand All @@ -37,6 +33,11 @@ oxc_semantic = { workspace = true }
oxc_span = { workspace = true }
oxc_syntax = { workspace = true, features = ["to_js_string"] }
oxc_traverse = { workspace = true }

base64 = { workspace = true }
cow-utils = { workspace = true }
dashmap = { workspace = true }
indexmap = { workspace = true }
ropey = { workspace = true }
rustc-hash = { workspace = true }
serde = { workspace = true, features = ["derive"] }
Expand Down

0 comments on commit 9d43a11

Please sign in to comment.