chore: Publish crates

This commit is contained in:
SWC Bot 2022-04-08 06:31:07 +00:00
parent 720244fff9
commit 1211a34618
3 changed files with 14 additions and 8 deletions

View File

@ -1,6 +1,12 @@
# Changelog
## [unreleased]
### Bug Fixes
- **(es/module)** Support top-level await in dynamic imports (#4277) ([720244f](https://github.com/swc-project/swc/commit/720244fff9f3fcf5cb0ed4bcfc6e2a5795ad3be1))
### Miscellaneous Tasks

2
Cargo.lock generated
View File

@ -3600,7 +3600,7 @@ dependencies = [
[[package]]
name = "swc_ecma_utils"
version = "0.79.0"
version = "0.79.1"
dependencies = [
"indexmap",
"once_cell",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_utils"
repository = "https://github.com/swc-project/swc.git"
version = "0.79.0"
version = "0.79.1"
[package.metadata.docs.rs]
all-features = true
@ -22,12 +22,12 @@ concurrent = ["swc_common/concurrent", "rayon"]
[dependencies]
indexmap = "1"
once_cell = "1.10.0"
rayon = {version = "1.5.1", optional = true}
swc_atoms = {version = "0.2.0", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"}
swc_ecma_ast = {version = "0.75.0", path = "../swc_ecma_ast"}
swc_ecma_visit = {version = "0.61.0", path = "../swc_ecma_visit"}
rayon = { version = "1.5.1", optional = true }
swc_atoms = { version = "0.2.0", path = "../swc_atoms" }
swc_common = { version = "0.17.20", path = "../swc_common" }
swc_ecma_ast = { version = "0.75.0", path = "../swc_ecma_ast" }
swc_ecma_visit = { version = "0.61.0", path = "../swc_ecma_visit" }
tracing = "0.1.32"
[dev-dependencies]
swc_ecma_parser = {version = "0.100.0", path = "../swc_ecma_parser"}
swc_ecma_parser = { version = "0.100.0", path = "../swc_ecma_parser" }