mirror of
https://github.com/swc-project/swc.git
synced 2024-12-28 08:04:43 +03:00
chore: Publish crates
This commit is contained in:
parent
05aecf507e
commit
090e7ef965
@ -23,6 +23,9 @@
|
||||
- **(node-swc/types)** Fix experimental config options (#3603) ([2b5eba1](https://github.com/swc-project/swc/commit/2b5eba16c3a5e3621b6e66d92db1e0d6c400c9f2))
|
||||
|
||||
|
||||
- **(plugin)** Fix caching of wasm modulee (#3616) ([05aecf5](https://github.com/swc-project/swc/commit/05aecf507e9bf46002e0629b159245ff9c0f7b2c))
|
||||
|
||||
|
||||
- **(swc_common)** Fix names of proxied functions (#3608) ([e863f9d](https://github.com/swc-project/swc/commit/e863f9dd0486a53c835e9cd08cfa7ab7c31dd087))
|
||||
|
||||
### Documentation
|
||||
|
10
Cargo.lock
generated
10
Cargo.lock
generated
@ -2633,7 +2633,7 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
||||
|
||||
[[package]]
|
||||
name = "swc"
|
||||
version = "0.127.5"
|
||||
version = "0.128.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
@ -2731,7 +2731,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_cli"
|
||||
version = "0.1.4"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"clap",
|
||||
@ -3379,7 +3379,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_estree_compat"
|
||||
version = "0.45.0"
|
||||
version = "0.46.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
@ -3501,7 +3501,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_plugin_runner"
|
||||
version = "0.34.0"
|
||||
version = "0.35.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"libloading",
|
||||
@ -3569,7 +3569,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_webpack_ast"
|
||||
version = "0.43.0"
|
||||
version = "0.44.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"rayon",
|
||||
|
@ -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.127.5"
|
||||
version = "0.128.0"
|
||||
|
||||
[lib]
|
||||
name = "swc"
|
||||
@ -70,7 +70,7 @@ swc_ecma_utils = {version = "0.65.3", path = "../swc_ecma_utils"}
|
||||
swc_ecma_visit = {version = "0.51.1", path = "../swc_ecma_visit"}
|
||||
swc_ecmascript = {version = "0.114.2", path = "../swc_ecmascript"}
|
||||
swc_node_comments = {version = "0.4.0", path = "../swc_node_comments"}
|
||||
swc_plugin_runner = {version = "0.34.0", path = "../swc_plugin_runner", optional = true}
|
||||
swc_plugin_runner = {version = "0.35.0", path = "../swc_plugin_runner", optional = true}
|
||||
swc_visit = {version = "0.3.0", path = "../swc_visit"}
|
||||
tracing = "0.1.28"
|
||||
|
||||
|
@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_cli"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.1.4"
|
||||
version = "0.2.0"
|
||||
|
||||
[[bin]]
|
||||
name = "swc"
|
||||
@ -17,7 +17,7 @@ anyhow = "1.0.53"
|
||||
clap = { version = "3.1.0", features = ["derive", "wrap_help"] }
|
||||
walkdir = "2"
|
||||
rayon = "1"
|
||||
swc = { version = "0.127.1", path = "../swc" }
|
||||
swc = { version = "0.128.0", path = "../swc" }
|
||||
swc_common = { version = "0.17.5", path = "../swc_common" }
|
||||
relative-path = "1.6.1"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_estree_compat"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.45.0"
|
||||
version = "0.46.0"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -29,7 +29,7 @@ swc_node_comments = {version = "0.4.0", path = "../swc_node_comments/"}
|
||||
|
||||
[dev-dependencies]
|
||||
pretty_assertions = "0.7.2"
|
||||
swc = {version = "0.127.0", path = "../swc"}
|
||||
swc = {version = "0.128.0", path = "../swc"}
|
||||
swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast"}
|
||||
swc_ecma_parser = {version = "0.88.0", path = "../swc_ecma_parser"}
|
||||
swc_ecma_transforms = {version = "0.117.0", path = "../swc_ecma_transforms/"}
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_plugin_runner"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.34.0"
|
||||
version = "0.35.0"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.42"
|
||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_webpack_ast"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.43.0"
|
||||
version = "0.44.0"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
@ -22,7 +22,7 @@ swc_ecma_transforms_base = {version = "0.58.0", path = "../swc_ecma_transforms_b
|
||||
swc_ecma_utils = {version = "0.65.0", path = "../swc_ecma_utils"}
|
||||
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}
|
||||
swc_estree_ast = {version = "0.7.0", path = "../swc_estree_ast"}
|
||||
swc_estree_compat = {version = "0.45.0", path = "../swc_estree_compat"}
|
||||
swc_estree_compat = {version = "0.46.0", path = "../swc_estree_compat"}
|
||||
swc_timer = {version = "0.4.0", path = "../swc_timer"}
|
||||
tracing = "0.1.29"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user