diff --git a/CHANGELOG.md b/CHANGELOG.md index e991ee1b6078..2238a06e25af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -94,6 +94,9 @@ - **(css/parser)** Improve project structure (#6110) ([6e2e2ad](https://github.com/swc-project/swc/commit/6e2e2ada4eab95a75554eecc8fab423bb8c94033)) + +- **(es/minifier)** Don't create invalid nodes (#6191) ([ea03ce1](https://github.com/swc-project/swc/commit/ea03ce1a82b0d5b49e0e324f09922efdca10ffbd)) + ### Testing diff --git a/Cargo.lock b/Cargo.lock index caf04ccbc5c4..381abccc682a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -168,7 +168,7 @@ dependencies = [ [[package]] name = "binding_macros" -version = "0.20.46" +version = "0.20.47" dependencies = [ "anyhow", "console_error_panic_hook", @@ -776,7 +776,7 @@ dependencies = [ [[package]] name = "dbg-swc" -version = "0.58.56" +version = "0.58.57" dependencies = [ "anyhow", "clap 3.1.0", @@ -2982,7 +2982,7 @@ dependencies = [ [[package]] name = "swc" -version = "0.232.46" +version = "0.232.47" dependencies = [ "ahash", "ansi_term", @@ -3053,7 +3053,7 @@ dependencies = [ [[package]] name = "swc_bundler" -version = "0.192.41" +version = "0.192.42" dependencies = [ "ahash", "anyhow", @@ -3168,7 +3168,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.40.5" +version = "0.40.6" dependencies = [ "binding_macros", "once_cell", @@ -3527,7 +3527,7 @@ dependencies = [ [[package]] name = "swc_ecma_minifier" -version = "0.159.41" +version = "0.159.42" dependencies = [ "ahash", "ansi_term", @@ -3592,7 +3592,7 @@ dependencies = [ [[package]] name = "swc_ecma_preset_env" -version = "0.174.22" +version = "0.174.23" dependencies = [ "ahash", "anyhow", @@ -3657,7 +3657,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms" -version = "0.198.22" +version = "0.198.23" dependencies = [ "pretty_assertions", "sourcemap", @@ -3790,7 +3790,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_optimization" -version = "0.167.22" +version = "0.167.23" dependencies = [ "ahash", "dashmap", @@ -3949,7 +3949,7 @@ dependencies = [ [[package]] name = "swc_ecmascript" -version = "0.205.42" +version = "0.205.43" dependencies = [ "swc_ecma_ast", "swc_ecma_codegen", @@ -3997,7 +3997,7 @@ dependencies = [ [[package]] name = "swc_estree_compat" -version = "0.154.46" +version = "0.154.47" dependencies = [ "ahash", "anyhow", @@ -4045,7 +4045,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.93.2" +version = "0.93.3" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -4097,7 +4097,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.90.2" +version = "0.90.3" dependencies = [ "criterion", "once_cell", @@ -4183,7 +4183,7 @@ dependencies = [ [[package]] name = "swc_node_bundler" -version = "0.18.46" +version = "0.18.47" dependencies = [ "anyhow", "dashmap", diff --git a/crates/binding_macros/Cargo.toml b/crates/binding_macros/Cargo.toml index efffb44fad3c..407dd7f46b65 100644 --- a/crates/binding_macros/Cargo.toml +++ b/crates/binding_macros/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "Apache-2.0" name = "binding_macros" repository = "https://github.com/swc-project/swc.git" -version = "0.20.46" +version = "0.20.47" [lib] bench = false @@ -30,10 +30,10 @@ binding_wasm = [ [dependencies] # Common deps for the SWC imports -swc = { optional = true, version = "0.232.46", path = "../swc" } +swc = { optional = true, version = "0.232.47", path = "../swc" } swc_common = { optional = true, version = "0.29.10", path = "../swc_common" } swc_ecma_ast = { optional = true, version = "0.94.13", path = "../swc_ecma_ast" } -swc_ecma_transforms = { optional = true, version = "0.198.22", path = "../swc_ecma_transforms" } +swc_ecma_transforms = { optional = true, version = "0.198.23", path = "../swc_ecma_transforms" } # Optional deps for the wasm binding macro anyhow = { optional = true, version = "1.0.58" } diff --git a/crates/dbg-swc/Cargo.toml b/crates/dbg-swc/Cargo.toml index 05036b0fbc6b..58cb0ae960c2 100644 --- a/crates/dbg-swc/Cargo.toml +++ b/crates/dbg-swc/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "Apache-2.0" name = "dbg-swc" repository = "https://github.com/kdy1/dbg-swc.git" -version = "0.58.56" +version = "0.58.57" [[bin]] bench = false @@ -27,7 +27,7 @@ swc_common = { version = "0.29.10", features = [ ], path = "../swc_common" } swc_ecma_ast = { version = "0.94.13", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.127.21", path = "../swc_ecma_codegen" } -swc_ecma_minifier = { version = "0.159.41", path = "../swc_ecma_minifier", features = [ +swc_ecma_minifier = { version = "0.159.42", path = "../swc_ecma_minifier", features = [ "concurrent", ] } swc_ecma_parser = { version = "0.122.17", path = "../swc_ecma_parser" } diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 763c488ee3f6..e73aab36f89d 100644 --- a/crates/swc/Cargo.toml +++ b/crates/swc/Cargo.toml @@ -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.232.46" +version = "0.232.47" [lib] bench = false @@ -75,10 +75,10 @@ swc_ecma_loader = { version = "0.41.11", path = "../swc_ecma_loader", features = "node", "tsc", ] } -swc_ecma_minifier = { version = "0.159.41", path = "../swc_ecma_minifier" } +swc_ecma_minifier = { version = "0.159.42", path = "../swc_ecma_minifier" } swc_ecma_parser = { version = "0.122.17", path = "../swc_ecma_parser" } -swc_ecma_preset_env = { version = "0.174.22", path = "../swc_ecma_preset_env" } -swc_ecma_transforms = { version = "0.198.22", path = "../swc_ecma_transforms", features = [ +swc_ecma_preset_env = { version = "0.174.23", path = "../swc_ecma_preset_env" } +swc_ecma_transforms = { version = "0.198.23", path = "../swc_ecma_transforms", features = [ "compat", "module", "optimization", @@ -88,7 +88,7 @@ swc_ecma_transforms = { version = "0.198.22", path = "../swc_ecma_transforms", f ] } swc_ecma_transforms_base = { version = "0.111.30", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_compat = { version = "0.136.17", path = "../swc_ecma_transforms_compat" } -swc_ecma_transforms_optimization = { version = "0.167.22", path = "../swc_ecma_transforms_optimization" } +swc_ecma_transforms_optimization = { version = "0.167.23", path = "../swc_ecma_transforms_optimization" } swc_ecma_utils = { version = "0.105.22", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.80.13", path = "../swc_ecma_visit" } swc_error_reporters = { version = "0.13.10", path = "../swc_error_reporters" } diff --git a/crates/swc_bundler/Cargo.toml b/crates/swc_bundler/Cargo.toml index 674bdabc0bc9..896d1967d1a8 100644 --- a/crates/swc_bundler/Cargo.toml +++ b/crates/swc_bundler/Cargo.toml @@ -9,7 +9,7 @@ include = ["Cargo.toml", "build.rs", "src/**/*.rs", "src/**/*.js"] license = "Apache-2.0" name = "swc_bundler" repository = "https://github.com/swc-project/swc.git" -version = "0.192.41" +version = "0.192.42" [package.metadata.docs.rs] all-features = true @@ -44,7 +44,7 @@ swc_ecma_codegen = { version = "0.127.21", path = "../swc_ecma_c swc_ecma_loader = { version = "0.41.11", path = "../swc_ecma_loader" } swc_ecma_parser = { version = "0.122.17", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "0.111.30", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_optimization = { version = "0.167.22", path = "../swc_ecma_transforms_optimization" } +swc_ecma_transforms_optimization = { version = "0.167.23", path = "../swc_ecma_transforms_optimization" } swc_ecma_utils = { version = "0.105.22", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.80.13", path = "../swc_ecma_visit" } swc_fast_graph = { version = "0.17.11", path = "../swc_fast_graph/" } @@ -61,7 +61,7 @@ swc_ecma_loader = { version = "0.41.11", path = "../swc_ecma_loader", features = "node", "cache", ] } -swc_ecma_minifier = { version = "0.159.41", path = "../swc_ecma_minifier", features = [ +swc_ecma_minifier = { version = "0.159.42", path = "../swc_ecma_minifier", features = [ "concurrent", ] } swc_ecma_transforms_proposal = { version = "0.144.17", path = "../swc_ecma_transforms_proposal" } diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 9b60bf5e2e6d..8b4229c98a22 100644 --- a/crates/swc_core/Cargo.toml +++ b/crates/swc_core/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_core" repository = "https://github.com/swc-project/swc.git" -version = "0.40.5" +version = "0.40.6" [package.metadata.docs.rs] features = [ "common_perf", @@ -317,10 +317,10 @@ wasmer = { optional = true, version = "2.3.0", default-features = false } wasmer-wasi = { optional = true, version = "2.3.0", default-features = false } # swc_* dependencies -binding_macros = { optional = true, version = "0.20.46", path = "../binding_macros" } -swc = { optional = true, version = "0.232.46", path = "../swc" } +binding_macros = { optional = true, version = "0.20.47", path = "../binding_macros" } +swc = { optional = true, version = "0.232.47", path = "../swc" } swc_atoms = { optional = true, version = "0.4.23", path = "../swc_atoms" } -swc_bundler = { optional = true, version = "0.192.41", path = "../swc_bundler" } +swc_bundler = { optional = true, version = "0.192.42", path = "../swc_bundler" } swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" } swc_common = { optional = true, version = "0.29.10", path = "../swc_common" } swc_css_ast = { optional = true, version = "0.124.0", path = "../swc_css_ast" } @@ -333,13 +333,13 @@ swc_css_visit = { optional = true, version = "0.123.0", path swc_ecma_ast = { optional = true, version = "0.94.13", path = "../swc_ecma_ast" } swc_ecma_codegen = { optional = true, version = "0.127.21", path = "../swc_ecma_codegen" } swc_ecma_loader = { optional = true, version = "0.41.11", path = "../swc_ecma_loader" } -swc_ecma_minifier = { optional = true, version = "0.159.41", path = "../swc_ecma_minifier" } +swc_ecma_minifier = { optional = true, version = "0.159.42", path = "../swc_ecma_minifier" } swc_ecma_parser = { optional = true, version = "0.122.17", path = "../swc_ecma_parser" } -swc_ecma_preset_env = { optional = true, version = "0.174.22", path = "../swc_ecma_preset_env" } +swc_ecma_preset_env = { optional = true, version = "0.174.23", path = "../swc_ecma_preset_env" } swc_ecma_quote_macros = { optional = true, version = "0.33.18", path = "../swc_ecma_quote_macros" } swc_ecma_transforms_base = { optional = true, version = "0.111.30", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_module = { optional = true, version = "0.153.18", path = "../swc_ecma_transforms_module" } -swc_ecma_transforms_optimization = { optional = true, version = "0.167.22", path = "../swc_ecma_transforms_optimization" } +swc_ecma_transforms_optimization = { optional = true, version = "0.167.23", path = "../swc_ecma_transforms_optimization" } swc_ecma_transforms_proposal = { optional = true, version = "0.144.17", path = "../swc_ecma_transforms_proposal" } swc_ecma_transforms_react = { optional = true, version = "0.155.18", path = "../swc_ecma_transforms_react" } swc_ecma_transforms_testing = { optional = true, version = "0.114.16", path = "../swc_ecma_transforms_testing" } @@ -347,7 +347,7 @@ swc_ecma_transforms_typescript = { optional = true, version = "0.159.19", path swc_ecma_utils = { optional = true, version = "0.105.22", path = "../swc_ecma_utils" } swc_ecma_visit = { optional = true, version = "0.80.13", path = "../swc_ecma_visit" } swc_node_base = { optional = true, version = "0.5.7", path = "../swc_node_base" } -swc_node_bundler = { optional = true, version = "0.18.46", path = "../swc_node_bundler" } +swc_node_bundler = { optional = true, version = "0.18.47", path = "../swc_node_bundler" } swc_nodejs_common = { optional = true, version = "0.0.3", path = "../swc_nodejs_common" } swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" } swc_plugin_macro = { optional = true, version = "0.9.8", path = "../swc_plugin_macro" } diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index 8872748f648d..4ca8b61a0beb 100644 --- a/crates/swc_ecma_minifier/Cargo.toml +++ b/crates/swc_ecma_minifier/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/lists/*.json"] license = "Apache-2.0" name = "swc_ecma_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.159.41" +version = "0.159.42" [package.metadata.docs.rs] all-features = true @@ -52,7 +52,7 @@ swc_ecma_ast = { version = "0.94.13", path = "../swc_ecma_as swc_ecma_codegen = { version = "0.127.21", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "0.122.17", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "0.111.30", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_optimization = { version = "0.167.22", path = "../swc_ecma_transforms_optimization" } +swc_ecma_transforms_optimization = { version = "0.167.23", path = "../swc_ecma_transforms_optimization" } swc_ecma_utils = { version = "0.105.22", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.80.13", path = "../swc_ecma_visit" } swc_timer = { version = "0.17.10", path = "../swc_timer" } diff --git a/crates/swc_ecma_preset_env/Cargo.toml b/crates/swc_ecma_preset_env/Cargo.toml index f47b67b20ee0..df687f3ef2e0 100644 --- a/crates/swc_ecma_preset_env/Cargo.toml +++ b/crates/swc_ecma_preset_env/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"] license = "Apache-2.0" name = "swc_ecma_preset_env" -version = "0.174.22" +version = "0.174.23" [lib] bench = false @@ -26,7 +26,7 @@ string_enum = { version = "0.3.2", path = "../string_enum" } swc_atoms = { version = "0.4.23", path = "../swc_atoms" } swc_common = { version = "0.29.10", path = "../swc_common" } swc_ecma_ast = { version = "0.94.13", path = "../swc_ecma_ast" } -swc_ecma_transforms = { version = "0.198.22", path = "../swc_ecma_transforms", features = [ +swc_ecma_transforms = { version = "0.198.23", path = "../swc_ecma_transforms", features = [ "compat", "proposal", ] } diff --git a/crates/swc_ecma_transforms/Cargo.toml b/crates/swc_ecma_transforms/Cargo.toml index 518c82e5535e..84e0e6416e05 100644 --- a/crates/swc_ecma_transforms/Cargo.toml +++ b/crates/swc_ecma_transforms/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_transforms" repository = "https://github.com/swc-project/swc.git" -version = "0.198.22" +version = "0.198.23" [package.metadata.docs.rs] all-features = true @@ -37,7 +37,7 @@ swc_ecma_ast = { version = "0.94.13", path = "../swc_ecma_as swc_ecma_transforms_base = { version = "0.111.30", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_compat = { version = "0.136.17", path = "../swc_ecma_transforms_compat", optional = true } swc_ecma_transforms_module = { version = "0.153.18", path = "../swc_ecma_transforms_module", optional = true } -swc_ecma_transforms_optimization = { version = "0.167.22", path = "../swc_ecma_transforms_optimization", optional = true } +swc_ecma_transforms_optimization = { version = "0.167.23", path = "../swc_ecma_transforms_optimization", optional = true } swc_ecma_transforms_proposal = { version = "0.144.17", path = "../swc_ecma_transforms_proposal", optional = true } swc_ecma_transforms_react = { version = "0.155.18", path = "../swc_ecma_transforms_react", optional = true } swc_ecma_transforms_typescript = { version = "0.159.19", path = "../swc_ecma_transforms_typescript", optional = true } diff --git a/crates/swc_ecma_transforms_optimization/Cargo.toml b/crates/swc_ecma_transforms_optimization/Cargo.toml index 6fc7cf6c3d73..b6e28f83e158 100644 --- a/crates/swc_ecma_transforms_optimization/Cargo.toml +++ b/crates/swc_ecma_transforms_optimization/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_transforms_optimization" repository = "https://github.com/swc-project/swc.git" -version = "0.167.22" +version = "0.167.23" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] diff --git a/crates/swc_ecmascript/Cargo.toml b/crates/swc_ecmascript/Cargo.toml index fdc67638a2a7..669e01fea838 100644 --- a/crates/swc_ecmascript/Cargo.toml +++ b/crates/swc_ecmascript/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecmascript" repository = "https://github.com/swc-project/swc.git" -version = "0.205.42" +version = "0.205.43" [package.metadata.docs.rs] all-features = true @@ -42,11 +42,11 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"] swc_ecma_ast = { version = "0.94.13", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.127.21", path = "../swc_ecma_codegen", optional = true } swc_ecma_dep_graph = { version = "0.94.17", path = "../swc_ecma_dep_graph", optional = true } -swc_ecma_minifier = { version = "0.159.41", path = "../swc_ecma_minifier", optional = true } +swc_ecma_minifier = { version = "0.159.42", path = "../swc_ecma_minifier", optional = true } swc_ecma_parser = { version = "0.122.17", path = "../swc_ecma_parser", optional = true, default-features = false } -swc_ecma_preset_env = { version = "0.174.22", path = "../swc_ecma_preset_env", optional = true } +swc_ecma_preset_env = { version = "0.174.23", path = "../swc_ecma_preset_env", optional = true } swc_ecma_quote = { version = "0.38.20", path = "../swc_ecma_quote", optional = true } -swc_ecma_transforms = { version = "0.198.22", path = "../swc_ecma_transforms", optional = true } +swc_ecma_transforms = { version = "0.198.23", path = "../swc_ecma_transforms", optional = true } swc_ecma_utils = { version = "0.105.22", path = "../swc_ecma_utils", optional = true } swc_ecma_visit = { version = "0.80.13", path = "../swc_ecma_visit", optional = true } diff --git a/crates/swc_estree_compat/Cargo.toml b/crates/swc_estree_compat/Cargo.toml index 0cb718c70ed9..1ae1b4d2e1b8 100644 --- a/crates/swc_estree_compat/Cargo.toml +++ b/crates/swc_estree_compat/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_estree_compat" repository = "https://github.com/swc-project/swc.git" -version = "0.154.46" +version = "0.154.47" [package.metadata.docs.rs] all-features = true @@ -38,10 +38,10 @@ swc_node_comments = { version = "0.16.10", path = "../swc_node_comments/" } [dev-dependencies] criterion = "0.3" pretty_assertions = "1.1" -swc = { version = "0.232.46", path = "../swc" } +swc = { version = "0.232.47", path = "../swc" } swc_ecma_ast = { version = "0.94.13", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "0.122.17", path = "../swc_ecma_parser" } -swc_ecma_transforms = { version = "0.198.22", path = "../swc_ecma_transforms/" } +swc_ecma_transforms = { version = "0.198.23", path = "../swc_ecma_transforms/" } testing = { version = "0.31.10", path = "../testing" } walkdir = "2" diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index 601fd8999242..189badbe534e 100644 --- a/crates/swc_html/Cargo.toml +++ b/crates/swc_html/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_html" repository = "https://github.com/swc-project/swc.git" -version = "0.93.2" +version = "0.93.3" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.28.1", path = "../swc_html_ast"} swc_html_codegen = {version = "0.37.4", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.90.2", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.90.3", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.34.4", path = "../swc_html_parser"} swc_html_visit = {version = "0.28.1", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index f37041a518e0..c3a49b8516e0 100644 --- a/crates/swc_html_minifier/Cargo.toml +++ b/crates/swc_html_minifier/Cargo.toml @@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "data/**/*.json"] license = "Apache-2.0" name = "swc_html_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.90.2" +version = "0.90.3" [lib] bench = false @@ -28,7 +28,7 @@ swc_css_minifier = { version = "0.99.2", path = "../swc_css_minifier" } swc_css_parser = { version = "0.133.2", path = "../swc_css_parser" } swc_ecma_ast = { version = "0.94.13", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.127.21", path = "../swc_ecma_codegen" } -swc_ecma_minifier = { version = "0.159.41", path = "../swc_ecma_minifier" } +swc_ecma_minifier = { version = "0.159.42", path = "../swc_ecma_minifier" } swc_ecma_parser = { version = "0.122.17", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "0.111.30", path = "../swc_ecma_transforms_base" } swc_ecma_visit = { version = "0.80.13", path = "../swc_ecma_visit" } diff --git a/crates/swc_node_bundler/Cargo.toml b/crates/swc_node_bundler/Cargo.toml index a15b73e590aa..12a7e2256b08 100644 --- a/crates/swc_node_bundler/Cargo.toml +++ b/crates/swc_node_bundler/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_node_bundler" repository = "https://github.com/swc-project/swc.git" -version = "0.18.46" +version = "0.18.47" [lib] bench = false @@ -26,9 +26,9 @@ regex = "1" serde = { version = "1", features = ["derive"] } serde_json = "1" string_enum = { version = "0.3.2", path = "../string_enum" } -swc = { version = "0.232.46", path = "../swc" } +swc = { version = "0.232.47", path = "../swc" } swc_atoms = { version = "0.4.23", path = "../swc_atoms" } -swc_bundler = { version = "0.192.41", path = "../swc_bundler", features = [ +swc_bundler = { version = "0.192.42", path = "../swc_bundler", features = [ "concurrent", ] } swc_common = { version = "0.29.10", path = "../swc_common", features = [ @@ -38,7 +38,7 @@ swc_ecma_ast = { version = "0.94.13", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.127.21", path = "../swc_ecma_codegen" } swc_ecma_loader = { version = "0.41.11", path = "../swc_ecma_loader" } swc_ecma_parser = { version = "0.122.17", path = "../swc_ecma_parser" } -swc_ecma_transforms = { version = "0.198.22", path = "../swc_ecma_transforms" } +swc_ecma_transforms = { version = "0.198.23", path = "../swc_ecma_transforms" } swc_ecma_utils = { version = "0.105.22", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.80.13", path = "../swc_ecma_visit" } swc_node_base = { version = "0.5.7", path = "../swc_node_base" }