From 63c5c7bbb04664ed15352bd9432a80fc77c867ec Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Thu, 16 Feb 2023 05:05:34 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 +++ Cargo.lock | 6 +++--- crates/swc_bundler/Cargo.toml | 2 +- crates/swc_core/Cargo.toml | 6 +++--- crates/swc_node_bundler/Cargo.toml | 4 ++-- 5 files changed, 12 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 23ba131f878..a84980252d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,9 @@ - **(bindings/cli)** Rename `--config` to `--config-json` (#6932) ([cb4436b](https://github.com/swc-project/swc/commit/cb4436bd6ed085bdf1f0d98776f166bf2a6275c9)) +- **(bundler)** Don't panic while finding exports (#6947) ([542bb62](https://github.com/swc-project/swc/commit/542bb62ef78a999fe6c636be821427691ce0b071)) + + - **(es/module)** Fix `jsc.paths` on Windows (#6930) ([1ec161a](https://github.com/swc-project/swc/commit/1ec161a0f15886f97d4fb9cbb5d115b29ed5e2a2)) diff --git a/Cargo.lock b/Cargo.lock index 0d94abe92d8..662083536e0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3186,7 +3186,7 @@ dependencies = [ [[package]] name = "swc_bundler" -version = "0.199.23" +version = "0.199.24" dependencies = [ "ahash", "anyhow", @@ -3300,7 +3300,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.59.30" +version = "0.59.31" dependencies = [ "anyhow", "binding_macros", @@ -4339,7 +4339,7 @@ dependencies = [ [[package]] name = "swc_node_bundler" -version = "0.32.28" +version = "0.32.29" dependencies = [ "anyhow", "dashmap", diff --git a/crates/swc_bundler/Cargo.toml b/crates/swc_bundler/Cargo.toml index 2f9669e7b1e..a1eb2d21046 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.199.23" +version = "0.199.24" [package.metadata.docs.rs] all-features = true diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index b4930b5e011..8cb8f7899ab 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.30" +version = "0.59.31" [package.metadata.docs.rs] features = [ "common_perf", @@ -343,7 +343,7 @@ wasmer-wasi = { optional = true, version = "2.3.0", default-features = false } binding_macros = { optional = true, version = "0.34.28", path = "../binding_macros" } swc = { optional = true, version = "0.245.28", path = "../swc" } swc_atoms = { optional = true, version = "0.4.36", path = "../swc_atoms" } -swc_bundler = { optional = true, version = "0.199.23", path = "../swc_bundler" } +swc_bundler = { optional = true, version = "0.199.24", path = "../swc_bundler" } swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" } swc_common = { optional = true, version = "0.29.31", path = "../swc_common" } swc_css_ast = { optional = true, version = "0.134.4", path = "../swc_css_ast" } @@ -373,7 +373,7 @@ swc_ecma_usage_analyzer = { optional = true, version = "0.3.7", path = swc_ecma_utils = { optional = true, version = "0.107.9", path = "../swc_ecma_utils" } 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.28", path = "../swc_node_bundler" } +swc_node_bundler = { optional = true, version = "0.32.29", path = "../swc_node_bundler" } 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" } diff --git a/crates/swc_node_bundler/Cargo.toml b/crates/swc_node_bundler/Cargo.toml index 5b7079462a6..fde89f60795 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.32.28" +version = "0.32.29" [lib] bench = false @@ -28,7 +28,7 @@ serde_json = "1" string_enum = { version = "0.3.2", path = "../string_enum" } swc = { version = "0.245.28", path = "../swc" } swc_atoms = { version = "0.4.36", path = "../swc_atoms" } -swc_bundler = { version = "0.199.23", path = "../swc_bundler", features = [ +swc_bundler = { version = "0.199.24", path = "../swc_bundler", features = [ "concurrent", ] } swc_common = { version = "0.29.31", path = "../swc_common", features = [