mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
chore: Publish crates
This commit is contained in:
parent
af8236d689
commit
48b83fb69d
@ -32,6 +32,9 @@
|
||||
- **(es/minifier)** Don't panic on jsx or ts (#5984) ([0067f71](https://github.com/swc-project/swc/commit/0067f719dd0a072ef43e51698f159506287d7f35))
|
||||
|
||||
|
||||
- **(es/minifier)** Remove print ([af8236d](https://github.com/swc-project/swc/commit/af8236d689e29980ef1bc8d7d05ed61e37649b28))
|
||||
|
||||
|
||||
- **(es/parser)** Allow `as` in destructuring assignment (#5948) ([cdd69d0](https://github.com/swc-project/swc/commit/cdd69d0145d22008448f394e8b39ba98291d87fe))
|
||||
|
||||
|
||||
|
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -2957,7 +2957,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc"
|
||||
version = "0.230.6"
|
||||
version = "0.230.7"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"ansi_term",
|
||||
@ -3145,7 +3145,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_core"
|
||||
version = "0.28.7"
|
||||
version = "0.28.8"
|
||||
dependencies = [
|
||||
"binding_macros",
|
||||
"once_cell",
|
||||
@ -3465,7 +3465,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_minifier"
|
||||
version = "0.157.19"
|
||||
version = "0.157.20"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"ansi_term",
|
||||
|
@ -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.230.6"
|
||||
version = "0.230.7"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -75,7 +75,7 @@ swc_ecma_loader = { version = "0.41.3", path = "../swc_ecma_loader", features =
|
||||
"node",
|
||||
"tsc",
|
||||
] }
|
||||
swc_ecma_minifier = { version = "0.157.19", path = "../swc_ecma_minifier" }
|
||||
swc_ecma_minifier = { version = "0.157.20", path = "../swc_ecma_minifier" }
|
||||
swc_ecma_parser = { version = "0.122.4", path = "../swc_ecma_parser" }
|
||||
swc_ecma_preset_env = { version = "0.172.10", path = "../swc_ecma_preset_env" }
|
||||
swc_ecma_transforms = { version = "0.196.10", path = "../swc_ecma_transforms", features = [
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_core"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.28.7"
|
||||
version = "0.28.8"
|
||||
[package.metadata.docs.rs]
|
||||
features = [
|
||||
"common_perf",
|
||||
@ -317,7 +317,7 @@ wasmer-wasi = { optional = true, version = "2.3.0", default-features = false }
|
||||
|
||||
# swc_* dependencies
|
||||
binding_macros = { optional = true, version = "0.18.6", path = "../binding_macros" }
|
||||
swc = { optional = true, version = "0.230.6", path = "../swc" }
|
||||
swc = { optional = true, version = "0.230.7", path = "../swc" }
|
||||
swc_atoms = { optional = true, version = "0.4.18", path = "../swc_atoms" }
|
||||
swc_bundler = { optional = true, version = "0.190.19", path = "../swc_bundler" }
|
||||
swc_cached = { optional = true, version = "0.3.14", path = "../swc_cached" }
|
||||
@ -332,7 +332,7 @@ swc_css_visit = { optional = true, version = "0.113.4", path
|
||||
swc_ecma_ast = { optional = true, version = "0.94.3", path = "../swc_ecma_ast" }
|
||||
swc_ecma_codegen = { optional = true, version = "0.127.5", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_loader = { optional = true, version = "0.41.3", path = "../swc_ecma_loader" }
|
||||
swc_ecma_minifier = { optional = true, version = "0.157.19", path = "../swc_ecma_minifier" }
|
||||
swc_ecma_minifier = { optional = true, version = "0.157.20", path = "../swc_ecma_minifier" }
|
||||
swc_ecma_parser = { optional = true, version = "0.122.4", path = "../swc_ecma_parser" }
|
||||
swc_ecma_quote_macros = { optional = true, version = "0.33.4", path = "../swc_ecma_quote_macros" }
|
||||
swc_ecma_transforms_base = { optional = true, version = "0.111.8", path = "../swc_ecma_transforms_base" }
|
||||
|
@ -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.157.19"
|
||||
version = "0.157.20"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
|
Loading…
Reference in New Issue
Block a user