mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 13:51:19 +03:00
chore: Publish crates
This commit is contained in:
parent
df87c2b302
commit
08c4589da7
@ -14,6 +14,9 @@
|
|||||||
- **(es/loader)** Update `lru` (#3092) ([15cbe4f](https://github.com/swc-project/swc/commit/15cbe4fcaad7b7b2f7bcc9fd413594a18ede25d8))
|
- **(es/loader)** Update `lru` (#3092) ([15cbe4f](https://github.com/swc-project/swc/commit/15cbe4fcaad7b7b2f7bcc9fd413594a18ede25d8))
|
||||||
|
|
||||||
|
|
||||||
|
- **(es/transforms)** Fix `descturcturing` (#3098) ([df87c2b](https://github.com/swc-project/swc/commit/df87c2b30221f990cdd63125c9ef6036f370145e))
|
||||||
|
|
||||||
|
|
||||||
- **(es/typescript)** Export destructured properties in typescript namespaces (#3084) ([31dea3d](https://github.com/swc-project/swc/commit/31dea3dd319a19b75554b061cb1374d12718af24))
|
- **(es/typescript)** Export destructured properties in typescript namespaces (#3084) ([31dea3d](https://github.com/swc-project/swc/commit/31dea3dd319a19b75554b061cb1374d12718af24))
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -3014,7 +3014,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_ecma_transforms"
|
name = "swc_ecma_transforms"
|
||||||
version = "0.103.2"
|
version = "0.103.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"pretty_assertions 0.6.1",
|
"pretty_assertions 0.6.1",
|
||||||
"sourcemap",
|
"sourcemap",
|
||||||
@ -3074,7 +3074,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_ecma_transforms_compat"
|
name = "swc_ecma_transforms_compat"
|
||||||
version = "0.59.2"
|
version = "0.59.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ahash",
|
"ahash",
|
||||||
"arrayvec",
|
"arrayvec",
|
||||||
@ -3288,7 +3288,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_ecmascript"
|
name = "swc_ecmascript"
|
||||||
version = "0.99.0"
|
version = "0.99.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"swc_ecma_ast",
|
"swc_ecma_ast",
|
||||||
"swc_ecma_codegen",
|
"swc_ecma_codegen",
|
||||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_ecma_transforms"
|
name = "swc_ecma_transforms"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.103.2"
|
version = "0.103.3"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
@ -28,7 +28,7 @@ swc_common = {version = "0.15.0", path = "../swc_common"}
|
|||||||
swc_ecma_ast = {version = "0.60.0", path = "../swc_ecma_ast"}
|
swc_ecma_ast = {version = "0.60.0", path = "../swc_ecma_ast"}
|
||||||
swc_ecma_parser = {version = "0.82.0", path = "../swc_ecma_parser"}
|
swc_ecma_parser = {version = "0.82.0", path = "../swc_ecma_parser"}
|
||||||
swc_ecma_transforms_base = {version = "0.49.1", path = "../swc_ecma_transforms_base"}
|
swc_ecma_transforms_base = {version = "0.49.1", path = "../swc_ecma_transforms_base"}
|
||||||
swc_ecma_transforms_compat = {version = "0.59.0", path = "../swc_ecma_transforms_compat", optional = true}
|
swc_ecma_transforms_compat = {version = "0.59.3", path = "../swc_ecma_transforms_compat", optional = true}
|
||||||
swc_ecma_transforms_module = {version = "0.65.0", path = "../swc_ecma_transforms_module", optional = true}
|
swc_ecma_transforms_module = {version = "0.65.0", path = "../swc_ecma_transforms_module", optional = true}
|
||||||
swc_ecma_transforms_optimization = {version = "0.73.0", path = "../swc_ecma_transforms_optimization", optional = true}
|
swc_ecma_transforms_optimization = {version = "0.73.0", path = "../swc_ecma_transforms_optimization", optional = true}
|
||||||
swc_ecma_transforms_proposal = {version = "0.65.0", path = "../swc_ecma_transforms_proposal", optional = true}
|
swc_ecma_transforms_proposal = {version = "0.65.0", path = "../swc_ecma_transforms_proposal", optional = true}
|
||||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_ecma_transforms_compat"
|
name = "swc_ecma_transforms_compat"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.59.2"
|
version = "0.59.3"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_ecmascript"
|
name = "swc_ecmascript"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.99.0"
|
version = "0.99.1"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
@ -39,7 +39,7 @@ swc_ecma_dep_graph = {version = "0.52.0", path = "../swc_ecma_dep_graph", option
|
|||||||
swc_ecma_minifier = {version = "0.60.1", path = "../swc_ecma_minifier", optional = true}
|
swc_ecma_minifier = {version = "0.60.1", path = "../swc_ecma_minifier", optional = true}
|
||||||
swc_ecma_parser = {version = "0.82.0", path = "../swc_ecma_parser", optional = true, default-features = false}
|
swc_ecma_parser = {version = "0.82.0", path = "../swc_ecma_parser", optional = true, default-features = false}
|
||||||
swc_ecma_preset_env = {version = "0.76.0", path = "../swc_ecma_preset_env", optional = true}
|
swc_ecma_preset_env = {version = "0.76.0", path = "../swc_ecma_preset_env", optional = true}
|
||||||
swc_ecma_transforms = {version = "0.103.2", path = "../swc_ecma_transforms", optional = true}
|
swc_ecma_transforms = {version = "0.103.3", path = "../swc_ecma_transforms", optional = true}
|
||||||
swc_ecma_utils = {version = "0.56.0", path = "../swc_ecma_utils", optional = true}
|
swc_ecma_utils = {version = "0.56.0", path = "../swc_ecma_utils", optional = true}
|
||||||
swc_ecma_visit = {version = "0.46.0", path = "../swc_ecma_visit", optional = true}
|
swc_ecma_visit = {version = "0.46.0", path = "../swc_ecma_visit", optional = true}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user