fix(oxlint): fix oxlint failed to build due to missing feature

closes #4626
This commit is contained in:
Boshen 2024-08-04 19:33:04 +08:00
parent c69ada4809
commit 73d2558c14
No known key found for this signature in database
GPG key ID: 67715A371E534061
2 changed files with 2 additions and 2 deletions

View file

@ -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 }

View file

@ -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 }