chore: Publish crates

This commit is contained in:
SWC Bot 2023-11-04 02:16:21 +00:00
parent a00f575837
commit 34e7c32085
17 changed files with 42 additions and 39 deletions

View File

@ -7,6 +7,12 @@
- **(css/modules)** Allow out-of-order class names for `composes` ([#8218](https://github.com/swc-project/swc/issues/8218)) ([aeb9caf](https://github.com/swc-project/swc/commit/aeb9cafd11c56d9dce41372211d90a3edb4d1848))
### Performance
- **(es/typescript)** Visit ts import/export only once ([#8213](https://github.com/swc-project/swc/issues/8213)) ([a00f575](https://github.com/swc-project/swc/commit/a00f575837a44a14dd09dd634f45a64e138263b0))
## [1.3.96] - 2023-11-03
### Bug Fixes
@ -1716,7 +1722,4 @@
- **(es/minifier)** Don't inline into arrow heads ([#7099](https://github.com/swc-project/swc/issues/7099)) ([610e1bb](https://github.com/swc-project/swc/commit/610e1bb581a04fe9b871dd7afa0cf81ab9ee7fa8))
- **(es/parser)** Fix parsing of static accessors ([#7108](https://github.com/swc-project/swc/issues/7108)) ([dd2b16d](https://github.com/swc-project/swc/commit/dd2b16db9ec77e515dcd38f68f8020d70d0f9ac9))
<!-- generated by git-cliff -->

22
Cargo.lock generated
View File

@ -284,7 +284,7 @@ dependencies = [
[[package]]
name = "binding_macros"
version = "0.60.30"
version = "0.60.31"
dependencies = [
"anyhow",
"console_error_panic_hook",
@ -3795,7 +3795,7 @@ dependencies = [
[[package]]
name = "swc_cli_impl"
version = "0.4.28"
version = "0.4.29"
dependencies = [
"anyhow",
"atty",
@ -3853,7 +3853,7 @@ dependencies = [
[[package]]
name = "swc_compiler_base"
version = "0.3.28"
version = "0.3.29"
dependencies = [
"anyhow",
"base64 0.13.1",
@ -3896,7 +3896,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.86.30"
version = "0.86.31"
dependencies = [
"anyhow",
"binding_macros",
@ -4717,7 +4717,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_optimization"
version = "0.195.21"
version = "0.195.22"
dependencies = [
"dashmap",
"indexmap 1.9.3",
@ -4823,7 +4823,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_typescript"
version = "0.185.20"
version = "0.185.21"
dependencies = [
"criterion",
"ryu-js",
@ -4892,7 +4892,7 @@ dependencies = [
[[package]]
name = "swc_ecmascript"
version = "0.236.29"
version = "0.236.30"
dependencies = [
"swc_ecma_ast",
"swc_ecma_codegen",
@ -4940,7 +4940,7 @@ dependencies = [
[[package]]
name = "swc_estree_compat"
version = "0.194.28"
version = "0.194.29"
dependencies = [
"ahash 0.8.5",
"anyhow",
@ -4988,7 +4988,7 @@ dependencies = [
[[package]]
name = "swc_html"
version = "0.134.27"
version = "0.134.28"
dependencies = [
"swc_html_ast",
"swc_html_codegen",
@ -5039,7 +5039,7 @@ dependencies = [
[[package]]
name = "swc_html_minifier"
version = "0.131.27"
version = "0.131.28"
dependencies = [
"criterion",
"once_cell",
@ -5125,7 +5125,7 @@ dependencies = [
[[package]]
name = "swc_node_bundler"
version = "0.58.29"
version = "0.58.30"
dependencies = [
"anyhow",
"dashmap",

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "binding_macros"
repository = "https://github.com/swc-project/swc.git"
version = "0.60.30"
version = "0.60.31"
[lib]
bench = false

View File

@ -73,7 +73,7 @@ swc_common = { version = "0.33.2", path = "../swc_common", features = [
"sourcemap",
"parking_lot",
] }
swc_compiler_base = { version = "0.3.28", path = "../swc_compiler_base" }
swc_compiler_base = { version = "0.3.29", path = "../swc_compiler_base" }
swc_config = { version = "0.1.7", path = "../swc_config" }
swc_ecma_ast = { version = "0.110.2", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.146.8", path = "../swc_ecma_codegen" }
@ -97,7 +97,7 @@ swc_ecma_transforms = { version = "0.226.21", path = "../swc_ecma_transforms", f
] }
swc_ecma_transforms_base = { version = "0.134.15", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.160.20", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.195.21", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.195.22", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.124.13", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.96.2", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.2", path = "../swc_error_reporters" }

View File

@ -44,7 +44,7 @@ swc_ecma_codegen = { version = "0.146.8", path = "../swc_ecma_co
swc_ecma_loader = { version = "0.45.3", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.141.8", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.134.15", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.195.21", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.195.22", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.124.13", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.96.2", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.21.2", path = "../swc_fast_graph/" }
@ -68,6 +68,6 @@ swc_ecma_minifier = { version = "0.189.27", path = "../swc_ecma_minifier", featu
] }
swc_ecma_transforms_proposal = { version = "0.168.23", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.180.23", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.185.20", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_typescript = { version = "0.185.21", path = "../swc_ecma_transforms_typescript" }
swc_node_base = { version = "0.5.8", path = "../swc_node_base" }
testing = { version = "0.35.4", path = "../testing" }

View File

@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_cli_impl"
repository = "https://github.com/swc-project/swc.git"
version = "0.4.28"
version = "0.4.29"
[features]
default = []
@ -32,7 +32,7 @@ tracing-futures = "0.2.5"
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
walkdir = "2"
swc_core = { version = "0.86.30", features = [
swc_core = { version = "0.86.31", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_compiler_base"
repository = "https://github.com/swc-project/swc.git"
version = "0.3.28"
version = "0.3.29"
[features]
node = ["napi", "napi-derive"]

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.86.30"
version = "0.86.31"
[package.metadata.docs.rs]
features = [
"allocator_node",
@ -324,7 +324,7 @@ __visit = ["__ecma", "swc_ecma_visit"]
once_cell = { optional = true, version = "1.18.0" }
# swc_* dependencies
binding_macros = { optional = true, version = "0.60.30", path = "../binding_macros" }
binding_macros = { optional = true, version = "0.60.31", path = "../binding_macros" }
swc = { optional = true, version = "0.269.29", path = "../swc" }
swc_atoms = { optional = true, version = "0.6.0", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "0.222.26", path = "../swc_bundler" }
@ -349,16 +349,16 @@ swc_ecma_quote_macros = { optional = true, version = "0.52.8", path =
swc_ecma_transforms_base = { optional = true, version = "0.134.15", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { optional = true, version = "0.160.20", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { optional = true, version = "0.177.22", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_optimization = { optional = true, version = "0.195.21", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { optional = true, version = "0.195.22", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_proposal = { optional = true, version = "0.168.23", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { optional = true, version = "0.180.23", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_testing = { optional = true, version = "0.137.16", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_typescript = { optional = true, version = "0.185.20", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_typescript = { optional = true, version = "0.185.21", path = "../swc_ecma_transforms_typescript" }
swc_ecma_usage_analyzer = { optional = true, version = "0.20.14", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { optional = true, version = "0.124.13", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "0.96.2", path = "../swc_ecma_visit" }
swc_node_base = { optional = true, version = "0.5.8", path = "../swc_node_base" }
swc_node_bundler = { optional = true, version = "0.58.29", path = "../swc_node_bundler" }
swc_node_bundler = { optional = true, version = "0.58.30", path = "../swc_node_bundler" }
swc_nodejs_common = { optional = true, version = "0.0.8", path = "../swc_nodejs_common" }
swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" }
swc_plugin_macro = { optional = true, version = "0.9.15", path = "../swc_plugin_macro" }

View File

@ -60,7 +60,7 @@ swc_ecma_ast = { version = "0.110.2", path = "../swc_ecma_ast", features = [
swc_ecma_codegen = { version = "0.146.8", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.141.8", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.134.15", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.195.21", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.195.22", path = "../swc_ecma_transforms_optimization" }
swc_ecma_usage_analyzer = { version = "0.20.14", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { version = "0.124.13", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.96.2", path = "../swc_ecma_visit" }

View File

@ -37,10 +37,10 @@ swc_ecma_ast = { version = "0.110.2", path = "../swc_ecma_as
swc_ecma_transforms_base = { version = "0.134.15", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.160.20", path = "../swc_ecma_transforms_compat", optional = true }
swc_ecma_transforms_module = { version = "0.177.22", path = "../swc_ecma_transforms_module", optional = true }
swc_ecma_transforms_optimization = { version = "0.195.21", path = "../swc_ecma_transforms_optimization", optional = true }
swc_ecma_transforms_optimization = { version = "0.195.22", path = "../swc_ecma_transforms_optimization", optional = true }
swc_ecma_transforms_proposal = { version = "0.168.23", path = "../swc_ecma_transforms_proposal", optional = true }
swc_ecma_transforms_react = { version = "0.180.23", path = "../swc_ecma_transforms_react", optional = true }
swc_ecma_transforms_typescript = { version = "0.185.20", path = "../swc_ecma_transforms_typescript", optional = true }
swc_ecma_transforms_typescript = { version = "0.185.21", path = "../swc_ecma_transforms_typescript", optional = true }
swc_ecma_utils = { version = "0.124.13", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.96.2", path = "../swc_ecma_visit" }

View File

@ -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.195.21"
version = "0.195.22"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
@ -47,5 +47,5 @@ swc_ecma_transforms_module = { version = "0.177.22", path = "../swc_ecma_tra
swc_ecma_transforms_proposal = { version = "0.168.23", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.180.23", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_testing = { version = "0.137.16", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_typescript = { version = "0.185.20", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_typescript = { version = "0.185.21", path = "../swc_ecma_transforms_typescript" }
testing = { version = "0.35.4", path = "../testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_transforms_typescript"
repository = "https://github.com/swc-project/swc.git"
version = "0.185.20"
version = "0.185.21"
[lib]
bench = false

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecmascript"
repository = "https://github.com/swc-project/swc.git"
version = "0.236.29"
version = "0.236.30"
[package.metadata.docs.rs]
all-features = true

View File

@ -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.194.28"
version = "0.194.29"
[package.metadata.docs.rs]
all-features = true

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_html"
repository = "https://github.com/swc-project/swc.git"
version = "0.134.27"
version = "0.134.28"
[package.metadata.docs.rs]
all-features = true
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies]
swc_html_ast = {version = "0.33.2", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.42.4", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.131.27", path = "../swc_html_minifier", optional = true}
swc_html_minifier = {version = "0.131.28", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.39.4", path = "../swc_html_parser"}
swc_html_visit = {version = "0.33.2", path = "../swc_html_visit"}

View File

@ -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.131.27"
version = "0.131.28"
[lib]
bench = false

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.58.29"
version = "0.58.30"
[lib]
bench = false