diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c97c7478ca..be1b8708b13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,12 @@ - **(es/react)** Fix handling of whitespaces (#6935) ([a9b25aa](https://github.com/swc-project/swc/commit/a9b25aaf4a776731d3ef2dc3c192a7b18023e765)) +### Miscellaneous Tasks + + + +- **(swc_nodejs_common)** Remove swc_node_base from swc_nodejs_common (#6940) ([0771418](https://github.com/swc-project/swc/commit/0771418dd0310a7e05bfad76baf4e16cd289351e)) + ## [1.3.35] - 2023-02-10 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 9fc28e10566..9d539220a56 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3300,7 +3300,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.59.28" +version = "0.59.29" dependencies = [ "anyhow", "binding_macros", @@ -4378,7 +4378,7 @@ dependencies = [ [[package]] name = "swc_nodejs_common" -version = "0.0.4" +version = "0.0.5" dependencies = [ "anyhow", "napi", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 6d84e368a00..70f03b1cb02 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.59.28" +version = "0.59.29" [package.metadata.docs.rs] features = [ "common_perf", @@ -374,7 +374,7 @@ swc_ecma_utils = { optional = true, version = "0.107.9", path swc_ecma_visit = { optional = true, version = "0.82.5", path = "../swc_ecma_visit" } swc_node_base = { optional = true, version = "0.5.8", path = "../swc_node_base" } swc_node_bundler = { optional = true, version = "0.32.27", path = "../swc_node_bundler" } -swc_nodejs_common = { optional = true, version = "0.0.4", path = "../swc_nodejs_common" } +swc_nodejs_common = { optional = true, version = "0.0.5", path = "../swc_nodejs_common" } swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" } swc_plugin_macro = { optional = true, version = "0.9.10", path = "../swc_plugin_macro" } swc_plugin_proxy = { optional = true, version = "0.25.3", path = "../swc_plugin_proxy" } diff --git a/crates/swc_nodejs_common/Cargo.toml b/crates/swc_nodejs_common/Cargo.toml index 6381441a846..75e39fbf2de 100644 --- a/crates/swc_nodejs_common/Cargo.toml +++ b/crates/swc_nodejs_common/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_nodejs_common" repository = "https://github.com/swc-project/swc.git" -version = "0.0.4" +version = "0.0.5" [lib] bench = false