chore: Bump crates

This commit is contained in:
SWC Bot 2024-02-21 10:22:20 +00:00
parent 7d62c762e6
commit 359ae7a16a
48 changed files with 104 additions and 101 deletions

View File

@ -16,6 +16,12 @@
- **(es/minifier)** Update examples code ([#8652](https://github.com/swc-project/swc/issues/8652)) ([3bf3a62](https://github.com/swc-project/swc/commit/3bf3a62505cc3fc6eaf182b75c319ea4bc212ee8))
### Features
- **(es/ast)** Add alias to `EsVersion` ([#8653](https://github.com/swc-project/swc/issues/8653)) ([7d62c76](https://github.com/swc-project/swc/commit/7d62c762e657cdddf45c1a99c66285ae9cb07b5c))
## [1.4.2] - 2024-02-19
### Bug Fixes
@ -1445,9 +1451,6 @@
- **(es/minifier)** Do not drop used properties ([#7702](https://github.com/swc-project/swc/issues/7702)) ([f901b41](https://github.com/swc-project/swc/commit/f901b417d1a37f679ff4c5a54e81671684d9f485))
- **(es/module)** Do not determine module name for modules without exports in UMD ([#7718](https://github.com/swc-project/swc/issues/7718)) ([40136f7](https://github.com/swc-project/swc/commit/40136f7c54bdc347d5f725549a27e1104433ff36))
### Refactor

6
Cargo.lock generated
View File

@ -4143,7 +4143,7 @@ dependencies = [
[[package]]
name = "swc_ecma_ast"
version = "0.112.2"
version = "0.112.3"
dependencies = [
"arbitrary",
"bitflags 2.4.2",
@ -4877,7 +4877,7 @@ dependencies = [
[[package]]
name = "swc_ecma_visit"
version = "0.98.2"
version = "0.98.3"
dependencies = [
"num-bigint",
"serde",
@ -5185,7 +5185,7 @@ dependencies = [
[[package]]
name = "swc_plugin_proxy"
version = "0.41.2"
version = "0.41.3"
dependencies = [
"better_scoped_tls",
"rkyv",

View File

@ -35,9 +35,9 @@ binding_wasm = [
# Common deps for the SWC imports
swc = { optional = true, version = "0.273.8", path = "../swc" }
swc_common = { optional = true, version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { optional = true, version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.229.7", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { optional = true, version = "0.98.3", path = "../swc_ecma_visit" }
# Optional deps for the wasm binding macro
anyhow = { optional = true, version = "1.0.71" }

View File

@ -30,13 +30,13 @@ swc_common = { version = "0.33.17", features = [
"concurrent",
"tty-emitter",
], path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.148.4", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.192.7", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.143.4", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.16", path = "../swc_error_reporters" }
swc_timer = { version = "0.21.18", path = "../swc_timer" }

View File

@ -25,6 +25,6 @@ swc_common = { version = "0.33.17", path = "../swc_common" }
anyhow = "1"
dashmap = "5.4.0"
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.143.4", path = "../swc_ecma_parser" }
testing = { version = "0.35.18", path = "../testing" }

View File

@ -75,7 +75,7 @@ swc_common = { version = "0.33.17", path = "../swc_common", features = [
] }
swc_compiler_base = { version = "0.7.7", path = "../swc_compiler_base" }
swc_config = { version = "0.1.11", path = "../swc_config" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.148.4", path = "../swc_ecma_codegen" }
swc_ecma_ext_transforms = { version = "0.113.6", path = "../swc_ecma_ext_transforms" }
swc_ecma_lints = { version = "0.92.7", path = "../swc_ecma_lints" }
@ -99,10 +99,10 @@ swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms
swc_ecma_transforms_compat = { version = "0.163.7", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.198.7", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.16", path = "../swc_error_reporters" }
swc_node_comments = { version = "0.20.16", path = "../swc_node_comments" }
swc_plugin_proxy = { version = "0.41.2", path = "../swc_plugin_proxy", optional = true }
swc_plugin_proxy = { version = "0.41.3", path = "../swc_plugin_proxy", optional = true }
swc_plugin_runner = { version = "0.106.5", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_timer = { version = "0.21.18", path = "../swc_timer" }
swc_visit = { version = "0.5.8", path = "../swc_visit" }
@ -124,7 +124,7 @@ swc_visit = { version = "0.5.8", path = "../swc_visit" }
ansi_term = "0.12"
criterion = "0.5"
rayon = "1.7.0"
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast", features = [
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast", features = [
"serde-impl",
] }
swc_ecma_lints = { version = "0.92.7", path = "../swc_ecma_lints", features = [

View File

@ -39,14 +39,14 @@ tracing = "0.1.37"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.148.4", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.143.4", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.198.7", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.21.17", path = "../swc_fast_graph/" }
swc_graph_analyzer = { version = "0.22.19", path = "../swc_graph_analyzer/" }

View File

@ -25,11 +25,11 @@ swc_common = { version = "0.33.17", path = "../swc_common", features = [
"sourcemap",
] }
swc_config = { version = "0.1.11", path = "../swc_config" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.148.4", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.192.7", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.143.4", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_timer = { version = "0.21.18", path = "../swc_timer" }
[dependencies.napi-derive]

View File

@ -342,7 +342,7 @@ swc_css_parser = { optional = true, version = "0.150.26", path
swc_css_prefixer = { optional = true, version = "0.153.31", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.137.18", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.139.18", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { optional = true, version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_codegen = { optional = true, version = "0.148.4", path = "../swc_ecma_codegen" }
swc_ecma_lints = { optional = true, version = "0.92.7", path = "../swc_ecma_lints" }
swc_ecma_loader = { optional = true, version = "0.45.19", path = "../swc_ecma_loader" }
@ -360,13 +360,13 @@ swc_ecma_transforms_testing = { optional = true, version = "0.140.7", path
swc_ecma_transforms_typescript = { optional = true, version = "0.188.7", path = "../swc_ecma_transforms_typescript" }
swc_ecma_usage_analyzer = { optional = true, version = "0.23.6", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { optional = true, version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { optional = true, version = "0.98.3", path = "../swc_ecma_visit" }
swc_malloc = { optional = true, version = "0.5.10", path = "../swc_malloc" }
swc_node_bundler = { optional = true, version = "0.62.8", path = "../swc_node_bundler" }
swc_nodejs_common = { optional = true, version = "0.0.8", path = "../swc_nodejs_common" }
swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" }
swc_plugin_macro = { optional = true, version = "0.9.16", path = "../swc_plugin_macro" }
swc_plugin_proxy = { optional = true, version = "0.41.2", path = "../swc_plugin_proxy" }
swc_plugin_proxy = { optional = true, version = "0.41.3", path = "../swc_plugin_proxy" }
swc_trace_macro = { optional = true, version = "0.1.3", path = "../swc_trace_macro" }
testing = { optional = true, version = "0.35.18", path = "../testing" }
# TODO: eventually swc_plugin_runner needs to remove default features

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.112.2"
version = "0.112.3"
[package.metadata.docs.rs]
all-features = true

View File

@ -27,7 +27,7 @@ tracing = "0.1.37"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_codegen_macros = { version = "0.7.4", path = "../swc_ecma_codegen_macros" }
[dev-dependencies]

View File

@ -13,11 +13,11 @@ version = "0.4.7"
[dependencies]
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_compat_es2015 = { version = "0.4.7", path = "../swc_ecma_compat_es2015" }
swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
tracing = "0.1.37"

View File

@ -13,7 +13,7 @@ version = "0.4.6"
[dependencies]
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }

View File

@ -24,13 +24,13 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_config = { version = "0.1.11", path = "../swc_config" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "0.4.6", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "0.126.7", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
tracing = "0.1.37"

View File

@ -15,11 +15,11 @@ version = "0.4.7"
[dependencies]
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
tracing = "0.1.37"

View File

@ -18,11 +18,11 @@ tracing = "0.1.37"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
[dev-dependencies]

View File

@ -18,12 +18,12 @@ tracing = "0.1.37"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "0.4.6", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
[dev-dependencies]

View File

@ -18,10 +18,10 @@ tracing = "0.1.37"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
[dev-dependencies]

View File

@ -16,11 +16,11 @@ version = "0.4.7"
serde = { version = "1.0.188", features = ["derive"] }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_compat_es2022 = { version = "0.4.7", path = "../swc_ecma_compat_es2022" }
swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
tracing = "0.1.37"

View File

@ -17,8 +17,8 @@ tracing = "0.1.37"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }

View File

@ -18,11 +18,11 @@ tracing = "0.1.37"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "0.4.6", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "0.126.7", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }

View File

@ -16,10 +16,10 @@ version = "0.4.7"
tracing = "0.1.37"
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
[dev-dependencies]

View File

@ -15,6 +15,6 @@ phf = { version = "0.11", features = ["macros"] }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }

View File

@ -25,11 +25,11 @@ swc_common = { version = "0.33.17", path = "../swc_common", features = [
"concurrent",
] }
swc_config = { version = "0.1.11", path = "../swc_config" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast", features = [
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast", features = [
"serde",
] }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
[dev-dependencies]
swc_ecma_codegen = { version = "0.148.4", path = "../swc_ecma_codegen" }

View File

@ -55,7 +55,7 @@ swc_common = { version = "0.33.17", path = "../swc_common" }
swc_config = { version = "0.1.11", path = "../swc_config", features = [
"sourcemap",
] }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast", features = [
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast", features = [
"serde",
] }
swc_ecma_codegen = { version = "0.148.4", path = "../swc_ecma_codegen" }
@ -64,7 +64,7 @@ swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms
swc_ecma_transforms_optimization = { version = "0.198.7", path = "../swc_ecma_transforms_optimization" }
swc_ecma_usage_analyzer = { version = "0.23.6", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_timer = { version = "0.21.18", path = "../swc_timer" }
[dev-dependencies]

View File

@ -37,8 +37,8 @@ new_debug_unreachable = "1.0.4"
phf = { version = "0.11.2", features = ["macros"] }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit", optional = true }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit", optional = true }
[target.'cfg(not(any(target_arch = "wasm32", target_arch = "arm")))'.dependencies]
stacker = { version = "0.1.15", optional = true }
@ -49,10 +49,10 @@ pretty_assertions = "1.3"
serde_json = "1"
walkdir = "2"
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast", features = [
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast", features = [
"serde-impl",
] }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.18", path = "../testing" }

View File

@ -31,13 +31,13 @@ rustc-hash = "1.1.0"
string_enum = { version = "0.4.2", path = "../string_enum" }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_transforms = { version = "0.229.7", path = "../swc_ecma_transforms", features = [
"compat",
"proposal",
] }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
[dev-dependencies]
criterion = "0.5"

View File

@ -14,7 +14,7 @@ bench = false
[dependencies]
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_quote_macros = { version = "0.54.7", path = "../swc_ecma_quote_macros" }
[dev-dependencies]

View File

@ -20,6 +20,6 @@ syn = "2"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.143.4", path = "../swc_ecma_parser" }
swc_macros_common = { version = "0.3.9", path = "../swc_macros_common" }

View File

@ -33,7 +33,7 @@ typescript = ["swc_ecma_transforms_typescript"]
[dependencies]
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.163.7", path = "../swc_ecma_transforms_compat", optional = true }
swc_ecma_transforms_module = { version = "0.180.7", path = "../swc_ecma_transforms_module", optional = true }
@ -42,7 +42,7 @@ swc_ecma_transforms_proposal = { version = "0.171.7", path = "../swc_ecma_tr
swc_ecma_transforms_react = { version = "0.183.7", path = "../swc_ecma_transforms_react", optional = true }
swc_ecma_transforms_typescript = { version = "0.188.7", path = "../swc_ecma_transforms_typescript", optional = true }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
[dev-dependencies]
pretty_assertions = "1.3"

View File

@ -30,10 +30,10 @@ tracing = "0.1.37"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.143.4", path = "../swc_ecma_parser" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
[dev-dependencies]
criterion = "0.5"

View File

@ -14,7 +14,7 @@ bench = false
[dependencies]
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }

View File

@ -32,7 +32,7 @@ tracing = "0.1.37"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_config = { version = "0.1.11", path = "../swc_config" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_compat_bugfixes = { version = "0.4.7", path = "../swc_ecma_compat_bugfixes" }
swc_ecma_compat_common = { version = "0.4.6", path = "../swc_ecma_compat_common" }
swc_ecma_compat_es2015 = { version = "0.4.7", path = "../swc_ecma_compat_es2015" }
@ -48,7 +48,7 @@ swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transfo
swc_ecma_transforms_classes = { version = "0.126.7", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
[dev-dependencies]

View File

@ -27,14 +27,14 @@ tracing = "0.1.37"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_cached = { version = "0.3.19", path = "../swc_cached" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader", features = [
"node",
] }
swc_ecma_parser = { version = "0.143.4", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
[dev-dependencies]
indexmap = { version = "2.0.0", features = ["serde"] }

View File

@ -33,12 +33,12 @@ tracing = "0.1.37"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.143.4", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.21.17", path = "../swc_fast_graph" }
[dev-dependencies]

View File

@ -24,13 +24,13 @@ smallvec = "1.8.0"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader", optional = true }
swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "0.126.7", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
[dev-dependencies]
serde_json = "1.0.66"

View File

@ -30,12 +30,12 @@ string_enum = { version = "0.4.2", path = "../string_enum" }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_config = { version = "0.1.11", path = "../swc_config" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.143.4", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
[dev-dependencies]
swc_ecma_codegen = { version = "0.148.4", path = "../swc_ecma_codegen/" }

View File

@ -25,11 +25,11 @@ tempfile = "3.6.0"
swc_common = { version = "0.33.17", path = "../swc_common", features = [
"sourcemap",
] }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.148.4", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.143.4", path = "../swc_ecma_parser" }
swc_ecma_testing = { version = "0.22.19", path = "../swc_ecma_testing" }
swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
testing = { version = "0.35.18", path = "../testing" }

View File

@ -18,11 +18,11 @@ serde = { version = "1.0.118", features = ["derive"] }
ryu-js = "1.0.0"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_react = { version = "0.183.7", path = "../swc_ecma_transforms_react" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
[dev-dependencies]
criterion = "0.5"

View File

@ -28,7 +28,7 @@ tracing = "0.1.37"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_timer = { version = "0.21.18", path = "../swc_timer" }

View File

@ -30,8 +30,8 @@ unicode-id = "0.3"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
[dev-dependencies]
swc_ecma_parser = { version = "0.143.4", path = "../swc_ecma_parser" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_visit"
repository = "https://github.com/swc-project/swc.git"
version = "0.98.2"
version = "0.98.3"
[package.metadata.docs.rs]
all-features = true
@ -27,5 +27,5 @@ tracing = "0.1.37"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_visit = { version = "0.5.8", path = "../swc_visit" }

View File

@ -38,7 +38,7 @@ react = ["swc_ecma_transforms/react"]
typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
[dependencies]
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.148.4", path = "../swc_ecma_codegen", optional = true }
swc_ecma_minifier = { version = "0.192.7", path = "../swc_ecma_minifier", optional = true }
swc_ecma_parser = { version = "0.143.4", path = "../swc_ecma_parser", optional = true, default-features = false }
@ -46,6 +46,6 @@ swc_ecma_preset_env = { version = "0.206.7", path = "../swc_ecma_preset_env", op
swc_ecma_quote = { version = "0.59.7", path = "../swc_ecma_quote", optional = true }
swc_ecma_transforms = { version = "0.229.7", path = "../swc_ecma_transforms", optional = true }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils", optional = true }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit", optional = true }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit", optional = true }
[dev-dependencies]

View File

@ -29,10 +29,10 @@ swc_common = { version = "0.33.17", path = "../swc_common", features = [
"sourcemap",
"tty-emitter",
] }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.143.4", path = "../swc_ecma_parser" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_estree_ast = { version = "0.23.16", path = "../swc_estree_ast" }
swc_node_comments = { version = "0.20.16", path = "../swc_node_comments/" }
@ -41,7 +41,7 @@ criterion = "0.5"
pretty_assertions = "1.3"
swc = { version = "0.273.8", path = "../swc" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.143.4", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "0.229.7", path = "../swc_ecma_transforms/" }
testing = { version = "0.35.18", path = "../testing" }

View File

@ -27,7 +27,7 @@ swc_css_ast = { version = "0.140.18", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.27", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.116.28", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.150.26", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.148.4", path = "../swc_ecma_codegen", features = [
"serde-impl",
] }
@ -36,7 +36,7 @@ swc_ecma_minifier = { version = "0.192.7", path = "../swc_ecma_minifier", featur
] }
swc_ecma_parser = { version = "0.143.4", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.137.7", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_html_ast = { version = "0.33.16", path = "../swc_html_ast" }
swc_html_codegen = { version = "0.42.21", path = "../swc_html_codegen" }
swc_html_parser = { version = "0.39.21", path = "../swc_html_parser" }

View File

@ -37,13 +37,13 @@ swc_bundler = { version = "0.225.7", path = "../swc_bundler", features = [
swc_common = { version = "0.33.17", path = "../swc_common", features = [
"concurrent",
] }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.148.4", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.143.4", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "0.229.7", path = "../swc_ecma_transforms" }
swc_ecma_utils = { version = "0.127.6", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
[dev-dependencies]

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_plugin_proxy"
repository = "https://github.com/swc-project/swc.git"
version = "0.41.2"
version = "0.41.3"
[lib]
bench = false
@ -30,5 +30,5 @@ tracing = "0.1.37"
better_scoped_tls = { version = "0.1.1", path = "../better_scoped_tls" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }

View File

@ -62,8 +62,8 @@ swc_common = { version = "0.33.17", path = "../swc_common", features = [
"concurrent",
] }
swc_css_ast = { version = "0.140.18", path = "../swc_css_ast", optional = true }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast", optional = true }
swc_plugin_proxy = { version = "0.41.2", path = "../swc_plugin_proxy" }
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast", optional = true }
swc_plugin_proxy = { version = "0.41.3", path = "../swc_plugin_proxy" }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
wasmer-cache = { version = "4.0.0", optional = true }
@ -77,12 +77,12 @@ swc_css_ast = { version = "0.140.18", path = "../swc_css_ast", features = [
"rkyv-impl",
] }
swc_css_parser = { version = "0.150.26", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast", features = [
swc_ecma_ast = { version = "0.112.3", path = "../swc_ecma_ast", features = [
"rkyv-impl",
] }
swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.143.4", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_ecma_visit = { version = "0.98.3", path = "../swc_ecma_visit" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.18", path = "../testing" }
tokio = { version = "1", features = ["rt"] }