mirror of
https://github.com/danbulant/oxc
synced 2026-05-20 12:48:38 +00:00
Move post-transform checker into a `tasks` crate. It doesn't feel like it belongs in `oxc_semantic`. It also feels like too heavy a lump of code to put in `tasks/common`.
24 lines
485 B
TOML
24 lines
485 B
TOML
[package]
|
|
name = "oxc_tasks_transform_checker"
|
|
version = "0.0.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
oxc_allocator = { workspace = true }
|
|
oxc_ast = { workspace = true }
|
|
oxc_diagnostics = { workspace = true }
|
|
oxc_semantic = { workspace = true }
|
|
oxc_span = { workspace = true }
|
|
oxc_syntax = { workspace = true }
|
|
|
|
indexmap = { workspace = true }
|
|
rustc-hash = { workspace = true }
|