chore: Publish crates

This commit is contained in:
SWC Bot 2023-02-16 05:05:34 +00:00
parent 542bb62ef7
commit 63c5c7bbb0
5 changed files with 12 additions and 9 deletions

View File

@ -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))

6
Cargo.lock generated
View File

@ -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",

View File

@ -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

View File

@ -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" }

View File

@ -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 = [