diff --git a/CHANGELOG.md b/CHANGELOG.md index c88c19f9073..1779bb525cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,9 @@ - **(es/minifier)** Drop unreachable statements eagerly (#3204) ([0105939](https://github.com/swc-project/swc/commit/01059394268791d85d48d9c1cbfa11564b1eb85e)) + +- **(es/modules)** Fix lazy import handling (#3211) ([9565149](https://github.com/swc-project/swc/commit/956514953940556847e7a5b42d7f1f21cffe9dd8)) + ### Features diff --git a/Cargo.lock b/Cargo.lock index 271ee22890f..2f3d8ad3fa9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3098,7 +3098,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_module" -version = "0.71.0" +version = "0.71.1" dependencies = [ "Inflector", "ahash", diff --git a/crates/swc_ecma_transforms_module/Cargo.toml b/crates/swc_ecma_transforms_module/Cargo.toml index 2af1aeb9fef..a1ac6472578 100644 --- a/crates/swc_ecma_transforms_module/Cargo.toml +++ b/crates/swc_ecma_transforms_module/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_transforms_module" repository = "https://github.com/swc-project/swc.git" -version = "0.71.0" +version = "0.71.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies]