fix(swc_core): Bump versions (#5706)

This commit is contained in:
OJ Kwon 2022-08-31 21:08:04 -07:00 committed by GitHub
parent e1deec44cc
commit 7686faece5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
36 changed files with 106 additions and 57 deletions

13
Cargo.lock generated
View File

@ -2898,7 +2898,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.222.2"
version = "0.222.3"
dependencies = [
"ahash",
"ansi_term",
@ -3083,7 +3083,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.17.0"
version = "0.17.1"
dependencies = [
"binding_macros",
"once_cell",
@ -3092,8 +3092,13 @@ dependencies = [
"swc_bundler",
"swc_cached",
"swc_common",
"swc_css",
"swc_css_ast",
"swc_css_codegen",
"swc_css_minifier",
"swc_css_parser",
"swc_css_prefixer",
"swc_css_utils",
"swc_css_visit",
"swc_ecma_ast",
"swc_ecma_codegen",
"swc_ecma_loader",
@ -3585,7 +3590,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_compat"
version = "0.128.2"
version = "0.128.3"
dependencies = [
"ahash",
"arrayvec",

View File

@ -32,7 +32,7 @@ binding_wasm = [
# Common deps for the SWC imports
swc = { optional = true, version = "0.222.0", path = "../swc" }
swc_common = { optional = true, version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { optional = true, version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.189.0", path = "../swc_ecma_transforms" }
# Optional deps for the wasm binding macro

View File

@ -21,7 +21,7 @@ swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.13", features = [
"concurrent",
], path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.123.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.150.0", path = "../swc_ecma_minifier", features = [
"concurrent",

View File

@ -20,6 +20,6 @@ swc_common = { version = "0.27.13", path = "../swc_common" }
[dev-dependencies]
anyhow = "1"
dashmap = "5.1.0"
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
testing = { version = "0.29.4", path = "../testing" }

View File

@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc"
repository = "https://github.com/swc-project/swc.git"
version = "0.222.2"
version = "0.222.3"
[lib]
bench = false
@ -62,7 +62,7 @@ swc_common = { version = "0.27.13", path = "../swc_common", features = [
"parking_lot",
] }
swc_config = { version = "0.1.1", path = "../swc_config" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.123.0", path = "../swc_ecma_codegen" }
swc_ecma_ext_transforms = { version = "0.86.0", path = "../swc_ecma_ext_transforms" }
swc_ecma_lints = { version = "0.60.0", path = "../swc_ecma_lints" }
@ -83,7 +83,7 @@ swc_ecma_transforms = { version = "0.189.0", path = "../swc_ecma_transforms", fe
"typescript",
] }
swc_ecma_transforms_base = { version = "0.105.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.128.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_compat = { version = "0.128.3", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.158.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }

View File

@ -39,7 +39,7 @@ relative-path = "1.2"
retain_mut = "0.1.2"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.123.0", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "0.39.4", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_core"
repository = "https://github.com/swc-project/swc.git"
version = "0.17.0"
version = "0.17.1"
[package.metadata.docs.rs]
features = [
"common_perf",
@ -132,7 +132,12 @@ codegen = ["swc_ecma_codegen"]
minifier = ["swc_ecma_minifier"]
# Enable swc_css
css = ["__css"]
css_ast = ["__css", "swc_css_ast"]
css_codegen = ["__css", "swc_css_codegen"]
css_minifier = ["__css", "swc_css_minifier"]
css_parser = ["__css", "swc_css_parser"]
css_utils = ["__css", "swc_css_utils"]
css_visit = ["__css", "swc_css_visit"]
css_prefixer = ["__css", "swc_css_prefixer"]
# Enable trace macro support.
@ -246,7 +251,7 @@ __binding_macros = ["common", "__base", "__transforms", "ast", "binding_macro
__bundler = ["swc_bundler"]
__cached = ["swc_cached"]
__common = ["swc_common"]
__css = ["swc_css"]
__css = []
__loader = ["swc_ecma_loader"]
__parser = ["swc_ecma_parser"]
__testing_transform = ["swc_ecma_transforms_testing"]
@ -261,12 +266,17 @@ wasmer-wasi = { optional = true, version = "2.3.0", default-features = false }
# swc_* dependencies
binding_macros = { optional = true, version = "0.10.0", path = "../binding_macros" }
swc = { optional = true, version = "0.222.0", path = "../swc" }
swc = { optional = true, version = "0.222.3", path = "../swc" }
swc_atoms = { optional = true, version = "0.4.8", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "0.183.0", path = "../swc_bundler" }
swc_cached = { optional = true, version = "0.3.5", path = "../swc_cached" }
swc_common = { optional = true, version = "0.27.12", path = "../swc_common" }
swc_css = { optional = true, version = "0.123.0", path = "../swc_css" }
swc_css_ast = { optional = true, version = "0.110.0", path = "../swc_css_ast"}
swc_css_codegen = { optional = true, version = "0.120.0", path = "../swc_css_codegen"}
swc_css_minifier = { optional = true, version = "0.85.0", path = "../swc_css_minifier"}
swc_css_parser = { optional = true, version = "0.119.0", path = "../swc_css_parser"}
swc_css_utils = { optional = true, version = "0.107.0", path = "../swc_css_utils/"}
swc_css_visit = { optional = true, version = "0.109.0", path = "../swc_css_visit"}
swc_css_prefixer = { optional = true, version = "0.121.0", path = "../swc_css_prefixer" }
swc_ecma_ast = { optional = true, version = "0.90.10", path = "../swc_ecma_ast" }
swc_ecma_codegen = { optional = true, version = "0.123.0", path = "../swc_ecma_codegen" }

View File

@ -141,13 +141,47 @@ pub mod minifier {
#[cfg(feature = "__css")]
#[cfg_attr(docsrs, doc(cfg(feature = "__css")))]
pub mod css {
pub use swc_css::*;
}
#[cfg(feature = "css_ast")]
#[cfg_attr(docsrs, doc(cfg(feature = "css_ast")))]
pub mod ast {
pub use swc_css_ast::*;
}
#[cfg(feature = "css_prefixer")]
#[cfg_attr(docsrs, doc(cfg(feature = "css_prefixer")))]
pub mod css_prefixer {
pub use swc_css_prefixer::*;
#[cfg(feature = "css_codegen")]
#[cfg_attr(docsrs, doc(cfg(feature = "css_codegen")))]
pub mod codegen {
pub use swc_css_codegen::*;
}
#[cfg(feature = "css_minifier")]
#[cfg_attr(docsrs, doc(cfg(feature = "css_minifier")))]
pub mod minifier {
pub use swc_css_minifier::*;
}
#[cfg(feature = "css_parser")]
#[cfg_attr(docsrs, doc(cfg(feature = "css_parser")))]
pub mod parser {
pub use swc_css_parser::*;
}
#[cfg(feature = "css_utils")]
#[cfg_attr(docsrs, doc(cfg(feature = "css_utils")))]
pub mod utils {
pub use swc_css_utils::*;
}
#[cfg(feature = "css_visit")]
#[cfg_attr(docsrs, doc(cfg(feature = "css_visit")))]
pub mod visit {
pub use swc_css_visit::*;
}
#[cfg(feature = "css_prefixer")]
#[cfg_attr(docsrs, doc(cfg(feature = "css_prefixer")))]
pub mod prefixer {
pub use swc_css_prefixer::*;
}
}
#[cfg(feature = "__cached")]

View File

@ -21,7 +21,7 @@ serde = "1.0.127"
sourcemap = "6"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_codegen_macros = { version = "0.7.1", path = "../swc_ecma_codegen_macros" }
tracing = "0.1.32"

View File

@ -14,7 +14,7 @@ bench = false
[dependencies]
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
[dev-dependencies]

View File

@ -14,6 +14,6 @@ bench = false
phf = { version = "0.10", features = ["macros"] }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }

View File

@ -25,7 +25,7 @@ swc_common = { version = "0.27.13", path = "../swc_common", features = [
"concurrent",
] }
swc_config = { version = "0.1.0", path = "../swc_config" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }

View File

@ -46,7 +46,7 @@ swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_cached = { version = "0.3.5", path = "../swc_cached" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_config = { version = "0.1.0", path = "../swc_config" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.123.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.105.0", path = "../swc_ecma_transforms_base" }

View File

@ -32,7 +32,7 @@ serde = { version = "1", features = ["derive"] }
smallvec = "1.8.0"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit", optional = true }
tracing = "0.1.32"
typed-arena = "2.0.1"

View File

@ -25,7 +25,7 @@ st-map = "0.1.2"
string_enum = { version = "0.3.1", path = "../string_enum" }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_transforms = { version = "0.189.0", path = "../swc_ecma_transforms", features = [
"compat",
"proposal",

View File

@ -14,7 +14,7 @@ bench = false
[dependencies]
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_quote_macros = { version = "0.29.0", path = "../swc_ecma_quote_macros" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }

View File

@ -19,7 +19,7 @@ proc-macro2 = "1"
quote = "1"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_macros_common = { version = "0.3.3", path = "../swc_macros_common" }
syn = "1"

View File

@ -17,6 +17,6 @@ hex = "0.4"
sha-1 = "0.10"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.123.0", path = "../swc_ecma_codegen" }
testing = { version = "0.29.4", path = "../testing" }

View File

@ -33,9 +33,9 @@ typescript = ["swc_ecma_transforms_typescript"]
[dependencies]
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.105.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.128.0", path = "../swc_ecma_transforms_compat", optional = true }
swc_ecma_transforms_compat = { version = "0.128.3", path = "../swc_ecma_transforms_compat", optional = true }
swc_ecma_transforms_module = { version = "0.145.0", path = "../swc_ecma_transforms_module", optional = true }
swc_ecma_transforms_optimization = { version = "0.158.0", path = "../swc_ecma_transforms_optimization", optional = true }
swc_ecma_transforms_proposal = { version = "0.136.0", path = "../swc_ecma_transforms_proposal", optional = true }

View File

@ -28,7 +28,7 @@ serde = { version = "1", features = ["derive"] }
smallvec = "1.8.0"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }

View File

@ -14,7 +14,7 @@ bench = false
[dependencies]
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.105.0", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_transforms_compat"
repository = "https://github.com/swc-project/swc.git"
version = "0.128.2"
version = "0.128.3"
[lib]
bench = false
@ -32,7 +32,7 @@ smallvec = "1.8.0"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_config = { version = "0.1.0", path = "../swc_config" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.105.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "0.94.0", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_macros = { version = "0.5.0", path = "../swc_ecma_transforms_macros" }

View File

@ -26,7 +26,7 @@ serde = { version = "1.0.118", features = ["derive"] }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_cached = { version = "0.3.5", path = "../swc_cached" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_loader = { version = "0.39.4", path = "../swc_ecma_loader", features = [
"node",
] }
@ -43,6 +43,6 @@ swc_ecma_loader = { version = "0.39.4", path = "../swc_ecma_loader", features =
"node",
"tsc",
] }
swc_ecma_transforms_compat = { version = "0.128.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_compat = { version = "0.128.3", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_testing = { version = "0.107.0", path = "../swc_ecma_transforms_testing" }
testing = { version = "0.29.4", path = "../testing/" }

View File

@ -27,7 +27,7 @@ rustc-hash = "1.1.0"
serde_json = "1.0.61"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.105.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "0.5.0", path = "../swc_ecma_transforms_macros" }
@ -36,7 +36,7 @@ swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
tracing = "0.1.32"
[dev-dependencies]
swc_ecma_transforms_compat = { version = "0.128.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_compat = { version = "0.128.3", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { version = "0.145.0", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_proposal = { version = "0.136.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.147.0", path = "../swc_ecma_transforms_react" }

View File

@ -22,7 +22,7 @@ serde = { version = "1.0.118", features = ["derive"] }
smallvec = "1.8.0"
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_loader = { version = "0.39.4", path = "../swc_ecma_loader", optional = true }
swc_ecma_transforms_base = { version = "0.105.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "0.94.0", path = "../swc_ecma_transforms_classes" }
@ -33,6 +33,6 @@ swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
[dev-dependencies]
serde_json = "1.0.66"
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_compat = { version = "0.128.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_compat = { version = "0.128.3", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_testing = { version = "0.107.0", path = "../swc_ecma_transforms_testing" }
testing = { version = "0.29.4", path = "../testing" }

View File

@ -29,7 +29,7 @@ string_enum = { version = "0.3.1", path = "../string_enum" }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_config = { version = "0.1.0", path = "../swc_config" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.105.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "0.5.0", path = "../swc_ecma_transforms_macros" }

View File

@ -19,7 +19,7 @@ serde = "1"
serde_json = "1"
sha-1 = "0.10"
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.123.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_testing = { version = "0.16.0", path = "../swc_ecma_testing" }

View File

@ -16,7 +16,7 @@ bench = false
serde = { version = "1.0.118", features = ["derive"] }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.105.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_react = { version = "0.147.0", path = "../swc_ecma_transforms_react" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
@ -26,7 +26,7 @@ swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
criterion = "0.3"
swc_ecma_codegen = { version = "0.123.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_compat = { version = "0.128.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_compat = { version = "0.128.3", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_proposal = { version = "0.136.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_testing = { version = "0.107.0", path = "../swc_ecma_transforms_testing" }
testing = { version = "0.29.4", path = "../testing" }

View File

@ -25,7 +25,7 @@ once_cell = "1.10.0"
rayon = { version = "1.5.1", optional = true }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
tracing = "0.1.32"
unicode-id = "0.3"

View File

@ -25,6 +25,6 @@ num-bigint = { version = "0.4", features = ["serde"] }
serde = { version = "1", optional = true }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
swc_common = { version = "0.27.13", path = "../swc_common" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_visit = { version = "0.5.2", path = "../swc_visit" }
tracing = "0.1.32"

View File

@ -39,7 +39,7 @@ react = ["swc_ecma_transforms/react"]
typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
[dependencies]
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.123.0", path = "../swc_ecma_codegen", optional = true }
swc_ecma_dep_graph = { version = "0.90.0", path = "../swc_ecma_dep_graph", optional = true }
swc_ecma_minifier = { version = "0.150.0", path = "../swc_ecma_minifier", optional = true }

View File

@ -28,7 +28,7 @@ swc_common = { version = "0.27.13", path = "../swc_common", features = [
"sourcemap",
"tty-emitter",
] }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_utils = { version = "0.100.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
@ -39,7 +39,7 @@ swc_node_comments = { version = "0.14.4", path = "../swc_node_comments/" }
criterion = "0.3"
pretty_assertions = "1.1"
swc = { version = "0.222.0", path = "../swc" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "0.189.0", path = "../swc_ecma_transforms/" }
testing = { version = "0.29.4", path = "../testing" }

View File

@ -26,7 +26,7 @@ swc_css_ast = { version = "0.110.0", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.120.0", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.85.0", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.119.0", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.123.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.150.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }

View File

@ -34,7 +34,7 @@ swc_bundler = { version = "0.183.0", path = "../swc_bundler", features = [
swc_common = { version = "0.27.13", path = "../swc_common", features = [
"concurrent",
] }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.123.0", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "0.39.4", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }

View File

@ -23,6 +23,6 @@ rkyv = "=0.7.37"
swc_common = { version = "0.27.13", path = "../swc_common", features = [
"plugin-base",
] }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast" }
swc_trace_macro = { version = "0.1.2", path = "../swc_trace_macro" }
tracing = "0.1.32"

View File

@ -32,7 +32,7 @@ swc_common = { version = "0.27.13", path = "../swc_common", features = [
"plugin-rt",
"concurrent",
] }
swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast", features = [
swc_ecma_ast = { version = "0.90.15", path = "../swc_ecma_ast", features = [
"rkyv-impl",
] }
swc_plugin_proxy = { version = "0.18.13", path = "../swc_plugin_proxy", features = [