mirror of
https://github.com/swc-project/swc.git
synced 2024-11-27 13:38:33 +03:00
chore: Publish crates
This commit is contained in:
parent
67e2c4a4fd
commit
1095bff35a
@ -17,6 +17,9 @@
|
||||
|
||||
|
||||
|
||||
- **(es)** Delete useless partition and extend in comments ([#8214](https://github.com/swc-project/swc/issues/8214)) ([67e2c4a](https://github.com/swc-project/swc/commit/67e2c4a4fd17436732099422c25d1c0d82f815dd))
|
||||
|
||||
|
||||
- **(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
|
||||
@ -1717,9 +1720,6 @@
|
||||
|
||||
|
||||
|
||||
- **(es/ast)** Fix `EqIgnoreSpan` impl of `Number` ([#7112](https://github.com/swc-project/swc/issues/7112)) ([6a570a3](https://github.com/swc-project/swc/commit/6a570a334c787358d67ae6c590a7fd0e916f35e8))
|
||||
|
||||
|
||||
- **(es/compat)** Don't modify private fields from `reserved_words` pass ([#7113](https://github.com/swc-project/swc/issues/7113)) ([2bc631d](https://github.com/swc-project/swc/commit/2bc631df8792d2f1356b5ef2dbf3ee0c46ecbd4f))
|
||||
|
||||
|
||||
|
12
Cargo.lock
generated
12
Cargo.lock
generated
@ -284,7 +284,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "binding_macros"
|
||||
version = "0.60.32"
|
||||
version = "0.60.33"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"console_error_panic_hook",
|
||||
@ -3669,7 +3669,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc"
|
||||
version = "0.269.30"
|
||||
version = "0.269.31"
|
||||
dependencies = [
|
||||
"ansi_term",
|
||||
"anyhow",
|
||||
@ -3795,7 +3795,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_cli_impl"
|
||||
version = "0.4.30"
|
||||
version = "0.4.31"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"atty",
|
||||
@ -3896,7 +3896,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_core"
|
||||
version = "0.86.32"
|
||||
version = "0.86.33"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"binding_macros",
|
||||
@ -4940,7 +4940,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_estree_compat"
|
||||
version = "0.194.30"
|
||||
version = "0.194.31"
|
||||
dependencies = [
|
||||
"ahash 0.8.5",
|
||||
"anyhow",
|
||||
@ -5125,7 +5125,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_node_bundler"
|
||||
version = "0.58.31"
|
||||
version = "0.58.32"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"dashmap",
|
||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "binding_macros"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.60.32"
|
||||
version = "0.60.33"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -33,7 +33,7 @@ binding_wasm = [
|
||||
|
||||
[dependencies]
|
||||
# Common deps for the SWC imports
|
||||
swc = { optional = true, version = "0.269.30", path = "../swc" }
|
||||
swc = { optional = true, version = "0.269.31", path = "../swc" }
|
||||
swc_common = { optional = true, version = "0.33.2", path = "../swc_common" }
|
||||
swc_ecma_ast = { optional = true, version = "0.110.2", path = "../swc_ecma_ast" }
|
||||
swc_ecma_transforms = { optional = true, version = "0.226.22", path = "../swc_ecma_transforms" }
|
||||
|
@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.269.30"
|
||||
version = "0.269.31"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
@ -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.30"
|
||||
version = "0.4.31"
|
||||
|
||||
[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.32", features = [
|
||||
swc_core = { version = "0.86.33", features = [
|
||||
"trace_macro",
|
||||
"common_concurrent",
|
||||
"base_concurrent",
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_core"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.86.32"
|
||||
version = "0.86.33"
|
||||
[package.metadata.docs.rs]
|
||||
features = [
|
||||
"allocator_node",
|
||||
@ -324,8 +324,8 @@ __visit = ["__ecma", "swc_ecma_visit"]
|
||||
once_cell = { optional = true, version = "1.18.0" }
|
||||
|
||||
# swc_* dependencies
|
||||
binding_macros = { optional = true, version = "0.60.32", path = "../binding_macros" }
|
||||
swc = { optional = true, version = "0.269.30", path = "../swc" }
|
||||
binding_macros = { optional = true, version = "0.60.33", path = "../binding_macros" }
|
||||
swc = { optional = true, version = "0.269.31", path = "../swc" }
|
||||
swc_atoms = { optional = true, version = "0.6.0", path = "../swc_atoms" }
|
||||
swc_bundler = { optional = true, version = "0.222.27", path = "../swc_bundler" }
|
||||
swc_cached = { optional = true, version = "0.3.18", path = "../swc_cached" }
|
||||
@ -358,7 +358,7 @@ swc_ecma_usage_analyzer = { optional = true, version = "0.20.14", path
|
||||
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.31", path = "../swc_node_bundler" }
|
||||
swc_node_bundler = { optional = true, version = "0.58.32", 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" }
|
||||
|
@ -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.30"
|
||||
version = "0.194.31"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -40,7 +40,7 @@ swc_node_comments = { version = "0.20.2", path = "../swc_node_comments/" }
|
||||
criterion = "0.5"
|
||||
pretty_assertions = "1.3"
|
||||
|
||||
swc = { version = "0.269.30", path = "../swc" }
|
||||
swc = { version = "0.269.31", path = "../swc" }
|
||||
swc_ecma_ast = { version = "0.110.2", path = "../swc_ecma_ast" }
|
||||
swc_ecma_parser = { version = "0.141.8", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms = { version = "0.226.22", path = "../swc_ecma_transforms/" }
|
||||
|
@ -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.31"
|
||||
version = "0.58.32"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -29,7 +29,7 @@ serde_json = "1"
|
||||
tracing = "0.1.37"
|
||||
|
||||
string_enum = { version = "0.4.1", path = "../string_enum" }
|
||||
swc = { version = "0.269.30", path = "../swc" }
|
||||
swc = { version = "0.269.31", path = "../swc" }
|
||||
swc_atoms = { version = "0.6.0", path = "../swc_atoms" }
|
||||
swc_bundler = { version = "0.222.27", path = "../swc_bundler", features = [
|
||||
"concurrent",
|
||||
|
Loading…
Reference in New Issue
Block a user