2021-11-10 13:00:54 +03:00
|
|
|
[package]
|
2022-08-11 12:52:44 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "rust port of babel and closure compiler."
|
2021-11-10 13:00:54 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc_ecma_transforms/"
|
2022-08-11 12:52:44 +03:00
|
|
|
edition = "2021"
|
|
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_ecma_transforms"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2022-11-18 10:19:26 +03:00
|
|
|
version = "0.198.54"
|
2021-11-10 13:00:54 +03:00
|
|
|
|
2022-08-11 12:52:44 +03:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
2021-11-10 13:00:54 +03:00
|
|
|
|
2022-04-04 14:12:03 +03:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2021-11-10 13:00:54 +03:00
|
|
|
[features]
|
|
|
|
compat = ["swc_ecma_transforms_compat"]
|
2022-06-11 10:42:43 +03:00
|
|
|
concurrent = [
|
2022-07-01 06:00:04 +03:00
|
|
|
"swc_ecma_transforms_compat/concurrent",
|
|
|
|
"swc_ecma_transforms_optimization/concurrent",
|
|
|
|
"swc_ecma_transforms_react/concurrent",
|
2022-06-11 10:42:43 +03:00
|
|
|
]
|
2021-11-10 13:00:54 +03:00
|
|
|
module = ["swc_ecma_transforms_module"]
|
|
|
|
multi-module-decorator = ["swc_ecma_transforms_proposal/multi-module"]
|
|
|
|
optimization = ["swc_ecma_transforms_optimization"]
|
|
|
|
proposal = ["swc_ecma_transforms_proposal"]
|
|
|
|
react = ["swc_ecma_transforms_react"]
|
|
|
|
typescript = ["swc_ecma_transforms_typescript"]
|
|
|
|
|
|
|
|
[dependencies]
|
2022-10-27 03:19:24 +03:00
|
|
|
swc_atoms = { version = "0.4.24", path = "../swc_atoms" }
|
2022-11-12 01:50:50 +03:00
|
|
|
swc_common = { version = "0.29.14", path = "../swc_common" }
|
|
|
|
swc_ecma_ast = { version = "0.94.19", path = "../swc_ecma_ast" }
|
2022-11-18 10:19:26 +03:00
|
|
|
swc_ecma_transforms_base = { version = "0.111.50", path = "../swc_ecma_transforms_base" }
|
|
|
|
swc_ecma_transforms_compat = { version = "0.136.43", path = "../swc_ecma_transforms_compat", optional = true }
|
|
|
|
swc_ecma_transforms_module = { version = "0.153.47", path = "../swc_ecma_transforms_module", optional = true }
|
|
|
|
swc_ecma_transforms_optimization = { version = "0.167.54", path = "../swc_ecma_transforms_optimization", optional = true }
|
|
|
|
swc_ecma_transforms_proposal = { version = "0.144.43", path = "../swc_ecma_transforms_proposal", optional = true }
|
|
|
|
swc_ecma_transforms_react = { version = "0.155.47", path = "../swc_ecma_transforms_react", optional = true }
|
|
|
|
swc_ecma_transforms_typescript = { version = "0.159.49", path = "../swc_ecma_transforms_typescript", optional = true }
|
|
|
|
swc_ecma_utils = { version = "0.105.35", path = "../swc_ecma_utils" }
|
2022-11-12 01:50:50 +03:00
|
|
|
swc_ecma_visit = { version = "0.80.19", path = "../swc_ecma_visit" }
|
2021-11-10 13:00:54 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-08-11 12:52:44 +03:00
|
|
|
pretty_assertions = "1.1"
|
|
|
|
sourcemap = "6"
|
2022-11-18 10:19:26 +03:00
|
|
|
swc_ecma_codegen = { version = "0.127.32", path = "../swc_ecma_codegen" }
|
|
|
|
swc_ecma_parser = { version = "0.122.27", path = "../swc_ecma_parser" }
|
|
|
|
swc_ecma_transforms_testing = { version = "0.114.35", path = "../swc_ecma_transforms_testing" }
|
2022-08-11 12:52:44 +03:00
|
|
|
tempfile = "3"
|
2022-11-12 01:50:50 +03:00
|
|
|
testing = { version = "0.31.14", path = "../testing" }
|