mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 22:56:11 +03:00
chore: Publish crates
This commit is contained in:
parent
fd3501bf87
commit
c119847256
@ -16,6 +16,9 @@
|
|||||||
|
|
||||||
- **(html/minifier)** Improve compression of attributes (#4849) ([c5df1a3](https://github.com/swc-project/swc/commit/c5df1a3a54e1445163efb38b4da339ccaed699d0))
|
- **(html/minifier)** Improve compression of attributes (#4849) ([c5df1a3](https://github.com/swc-project/swc/commit/c5df1a3a54e1445163efb38b4da339ccaed699d0))
|
||||||
|
|
||||||
|
|
||||||
|
- **(wasm)** Add json error (#4853) ([fd3501b](https://github.com/swc-project/swc/commit/fd3501bf87f4e711e72e9e8fd12f64f4cfa08157))
|
||||||
|
|
||||||
## [1.2.196] - 2022-05-31
|
## [1.2.196] - 2022-05-31
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -2922,7 +2922,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc"
|
name = "swc"
|
||||||
version = "0.183.0"
|
version = "0.184.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ahash",
|
"ahash",
|
||||||
"ansi_term",
|
"ansi_term",
|
||||||
@ -3045,7 +3045,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_cli"
|
name = "swc_cli"
|
||||||
version = "0.57.0"
|
version = "0.58.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"atty",
|
"atty",
|
||||||
@ -3840,7 +3840,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_estree_compat"
|
name = "swc_estree_compat"
|
||||||
version = "0.103.0"
|
version = "0.104.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ahash",
|
"ahash",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
@ -4143,7 +4143,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_webpack_ast"
|
name = "swc_webpack_ast"
|
||||||
version = "0.101.0"
|
version = "0.102.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"rayon",
|
"rayon",
|
||||||
|
@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc"
|
name = "swc"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.183.0"
|
version = "0.184.0"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
bench = false
|
bench = false
|
||||||
|
@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_cli"
|
name = "swc_cli"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.57.0"
|
version = "0.58.0"
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
bench = false
|
bench = false
|
||||||
@ -31,7 +31,7 @@ rayon = "1"
|
|||||||
relative-path = "1.6.1"
|
relative-path = "1.6.1"
|
||||||
serde = {version = "1", features = ["derive"]}
|
serde = {version = "1", features = ["derive"]}
|
||||||
serde_json = {version = "1", features = ["unbounded_depth"]}
|
serde_json = {version = "1", features = ["unbounded_depth"]}
|
||||||
swc = {version = "0.183.0", path = "../swc"}
|
swc = {version = "0.184.0", path = "../swc"}
|
||||||
swc_common = { version = "0.18.0", path = "../swc_common"}
|
swc_common = { version = "0.18.0", path = "../swc_common"}
|
||||||
swc_plugin_runner = {version = "0.55.0", path = "../swc_plugin_runner", default-features = false, optional = true}
|
swc_plugin_runner = {version = "0.55.0", path = "../swc_plugin_runner", default-features = false, optional = true}
|
||||||
swc_trace_macro = {version = "0.1.0", path = "../swc_trace_macro"}
|
swc_trace_macro = {version = "0.1.0", path = "../swc_trace_macro"}
|
||||||
|
@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_estree_compat"
|
name = "swc_estree_compat"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.103.0"
|
version = "0.104.0"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
@ -38,7 +38,7 @@ swc_node_comments = {version = "0.5.0", path = "../swc_node_comments/"}
|
|||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
criterion = "0.3"
|
criterion = "0.3"
|
||||||
pretty_assertions = "1.1"
|
pretty_assertions = "1.1"
|
||||||
swc = {version = "0.183.0", path = "../swc"}
|
swc = {version = "0.184.0", path = "../swc"}
|
||||||
swc_ecma_ast = {version = "0.78.0", path = "../swc_ecma_ast"}
|
swc_ecma_ast = {version = "0.78.0", path = "../swc_ecma_ast"}
|
||||||
swc_ecma_parser = {version = "0.104.0", path = "../swc_ecma_parser"}
|
swc_ecma_parser = {version = "0.104.0", path = "../swc_ecma_parser"}
|
||||||
swc_ecma_transforms = {version = "0.156.0", path = "../swc_ecma_transforms/"}
|
swc_ecma_transforms = {version = "0.156.0", path = "../swc_ecma_transforms/"}
|
||||||
|
@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_webpack_ast"
|
name = "swc_webpack_ast"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.101.0"
|
version = "0.102.0"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
bench = false
|
bench = false
|
||||||
@ -24,7 +24,7 @@ swc_ecma_transforms_base = {version = "0.86.0", path = "../swc_ecma_transforms_b
|
|||||||
swc_ecma_utils = {version = "0.85.0", path = "../swc_ecma_utils"}
|
swc_ecma_utils = {version = "0.85.0", path = "../swc_ecma_utils"}
|
||||||
swc_ecma_visit = {version = "0.64.0", path = "../swc_ecma_visit"}
|
swc_ecma_visit = {version = "0.64.0", path = "../swc_ecma_visit"}
|
||||||
swc_estree_ast = {version = "0.8.0", path = "../swc_estree_ast"}
|
swc_estree_ast = {version = "0.8.0", path = "../swc_estree_ast"}
|
||||||
swc_estree_compat = {version = "0.103.0", path = "../swc_estree_compat"}
|
swc_estree_compat = {version = "0.104.0", path = "../swc_estree_compat"}
|
||||||
swc_timer = {version = "0.6.0", path = "../swc_timer"}
|
swc_timer = {version = "0.6.0", path = "../swc_timer"}
|
||||||
tracing = "0.1.32"
|
tracing = "0.1.32"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user