mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 12:19:15 +00:00
fix(oxlint): fix oxlint failed to build due to missing feature
closes #4626
This commit is contained in:
parent
c69ada4809
commit
73d2558c14
2 changed files with 2 additions and 2 deletions
|
|
@ -22,7 +22,7 @@ doctest = false
|
|||
[dependencies]
|
||||
oxc_allocator = { workspace = true }
|
||||
oxc_parser = { workspace = true }
|
||||
oxc_span = { workspace = true, features = ["schemars"] }
|
||||
oxc_span = { workspace = true, features = ["schemars", "serialize"] }
|
||||
oxc_ast = { workspace = true }
|
||||
oxc_cfg = { workspace = true }
|
||||
oxc_diagnostics = { workspace = true }
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@ oxc_minifier = { workspace = true, optional = true }
|
|||
oxc_parser = { workspace = true, features = ["benchmarking"], optional = true }
|
||||
oxc_prettier = { workspace = true, optional = true }
|
||||
oxc_semantic = { workspace = true, optional = true }
|
||||
oxc_span = { workspace = true, optional = true, features = ["serialize", "schemars"] }
|
||||
oxc_span = { workspace = true, optional = true, features = ["schemars", "serialize"] }
|
||||
oxc_tasks_common = { workspace = true, optional = true }
|
||||
oxc_transformer = { workspace = true, optional = true }
|
||||
oxc_codegen = { workspace = true, optional = true }
|
||||
|
|
|
|||
Loading…
Reference in a new issue