mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 17:54:15 +03:00
chore: Publish crates with swc_core
v0.103.2
This commit is contained in:
parent
62ed0655e6
commit
741f2c07bb
@ -1,6 +0,0 @@
|
||||
---
|
||||
swc_ecma_transforms_typescript: patch
|
||||
swc_core: patch
|
||||
---
|
||||
|
||||
fix(es/typescript): Handle enum in single statement
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
swc_ecma_transforms_proposal: patch
|
||||
swc_core: patch
|
||||
---
|
||||
|
||||
fix(es/decorator): Add support for private access expressions in legacy decorators
|
@ -1,7 +0,0 @@
|
||||
---
|
||||
swc_ecma_compat_es2015: patch
|
||||
swc_ecma_transforms_compat: patch
|
||||
swc_core: patch
|
||||
---
|
||||
|
||||
fix(es/compat): Handle label block in constructor
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
swc_core: patch
|
||||
swc_ecma_minifier: patch
|
||||
---
|
||||
|
||||
fix(es/minifier): typeof class should be function rather than object
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
swc_core: patch
|
||||
swc_ecma_minifier: patch
|
||||
---
|
||||
|
||||
fix(es/minifier): prevent removing side effects from accessing getter with numeric string key
|
12
Cargo.lock
generated
12
Cargo.lock
generated
@ -4064,7 +4064,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_core"
|
||||
version = "0.103.1"
|
||||
version = "0.103.2"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"binding_macros",
|
||||
@ -4389,7 +4389,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_compat_es2015"
|
||||
version = "0.13.0"
|
||||
version = "0.13.1"
|
||||
dependencies = [
|
||||
"arrayvec",
|
||||
"indexmap 2.2.6",
|
||||
@ -4605,7 +4605,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_minifier"
|
||||
version = "0.205.1"
|
||||
version = "0.205.2"
|
||||
dependencies = [
|
||||
"ansi_term",
|
||||
"anyhow",
|
||||
@ -4808,7 +4808,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_transforms_compat"
|
||||
version = "0.172.0"
|
||||
version = "0.172.1"
|
||||
dependencies = [
|
||||
"arrayvec",
|
||||
"indexmap 2.2.6",
|
||||
@ -4917,7 +4917,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_transforms_proposal"
|
||||
version = "0.180.0"
|
||||
version = "0.180.1"
|
||||
dependencies = [
|
||||
"either",
|
||||
"rustc-hash",
|
||||
@ -4994,7 +4994,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_transforms_typescript"
|
||||
version = "0.199.0"
|
||||
version = "0.199.1"
|
||||
dependencies = [
|
||||
"codspeed-criterion-compat",
|
||||
"criterion",
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_core"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.103.1"
|
||||
version = "0.103.2"
|
||||
[package.metadata.docs.rs]
|
||||
features = [
|
||||
"allocator_node",
|
||||
|
@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecma_compat_es2015"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.13.0"
|
||||
version = "0.13.1"
|
||||
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/lists/*.json"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecma_minifier"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.205.1"
|
||||
version = "0.205.2"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
|
@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecma_transforms_compat"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.172.0"
|
||||
version = "0.172.1"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecma_transforms_proposal"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.180.0"
|
||||
version = "0.180.1"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
@ -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.199.0"
|
||||
version = "0.199.1"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
Loading…
Reference in New Issue
Block a user