mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 21:54:36 +03:00
chore: Publish crates
This commit is contained in:
parent
ea8dfd872c
commit
b64fcaa69d
@ -14,6 +14,9 @@
|
||||
- **(css/parser)** Fix bugs related to `url` (#3403) ([3c8d985](https://github.com/swc-project/swc/commit/3c8d985a07baf5a52f40221fcc73344b3ca48d15))
|
||||
|
||||
|
||||
- **(es/codegen)** Fix bugs (#3436) ([ea8dfd8](https://github.com/swc-project/swc/commit/ea8dfd872ced8e264ad3d6da7f07c0043dacfb27))
|
||||
|
||||
|
||||
- **(es/compat)** Add the missing span in `optional_chaining` (#3384) ([9eb7773](https://github.com/swc-project/swc/commit/9eb77738fd1049022693f52843483623553856dd))
|
||||
|
||||
|
||||
@ -103,6 +106,9 @@
|
||||
|
||||
- **(css/codegen)** Verify AST is not broken after minification (#3430) ([73efd72](https://github.com/swc-project/swc/commit/73efd72cbe03f3f386dadf3c969763f15bb9b41d))
|
||||
|
||||
|
||||
- **(swc)** Add tests (#3435) ([9e4cea0](https://github.com/swc-project/swc/commit/9e4cea017c2230e3d8db8dc48c3196116e90198a))
|
||||
|
||||
## [1.2.135] - 2022-01-27
|
||||
|
||||
### Bug Fixes
|
||||
|
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -2612,7 +2612,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc"
|
||||
version = "0.120.1"
|
||||
version = "0.120.2"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
@ -2865,7 +2865,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_codegen"
|
||||
version = "0.89.2"
|
||||
version = "0.89.3"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
"memchr",
|
||||
@ -3311,7 +3311,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecmascript"
|
||||
version = "0.111.11"
|
||||
version = "0.111.12"
|
||||
dependencies = [
|
||||
"swc_ecma_ast",
|
||||
"swc_ecma_codegen",
|
||||
|
@ -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.120.1"
|
||||
version = "0.120.2"
|
||||
|
||||
[lib]
|
||||
name = "swc"
|
||||
@ -48,7 +48,7 @@ sourcemap = "6"
|
||||
swc_atoms = {version = "0.2", path = "../swc_atoms"}
|
||||
swc_common = {version = "0.17.0", path = "../swc_common", features = ["sourcemap", "concurrent"]}
|
||||
swc_ecma_ast = {version = "0.65.3", path = "../swc_ecma_ast"}
|
||||
swc_ecma_codegen = {version = "0.89.2", path = "../swc_ecma_codegen"}
|
||||
swc_ecma_codegen = {version = "0.89.3", path = "../swc_ecma_codegen"}
|
||||
swc_ecma_ext_transforms = {version = "0.50.0", path = "../swc_ecma_ext_transforms"}
|
||||
swc_ecma_lints = {version = "0.12.0", path = "../swc_ecma_lints"}
|
||||
swc_ecma_loader = {version = "0.28.0", path = "../swc_ecma_loader", features = ["lru", "node", "tsc"]}
|
||||
@ -68,7 +68,7 @@ swc_ecma_transforms_compat = {version = "0.68.7", path = "../swc_ecma_transforms
|
||||
swc_ecma_transforms_optimization = {version = "0.84.0", path = "../swc_ecma_transforms_optimization"}
|
||||
swc_ecma_utils = {version = "0.64.0", path = "../swc_ecma_utils"}
|
||||
swc_ecma_visit = {version = "0.51.1", path = "../swc_ecma_visit"}
|
||||
swc_ecmascript = {version = "0.111.11", path = "../swc_ecmascript"}
|
||||
swc_ecmascript = {version = "0.111.12", path = "../swc_ecmascript"}
|
||||
swc_node_comments = {version = "0.4.0", path = "../swc_node_comments"}
|
||||
swc_plugin_runner = {version = "0.30.0", path = "../swc_plugin_runner", optional = true}
|
||||
swc_visit = {version = "0.3.0", path = "../swc_visit"}
|
||||
|
@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecma_codegen"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.89.2"
|
||||
version = "0.89.3"
|
||||
|
||||
[dependencies]
|
||||
bitflags = "1"
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecmascript"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.111.11"
|
||||
version = "0.111.12"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -34,7 +34,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
|
||||
|
||||
[dependencies]
|
||||
swc_ecma_ast = {version = "0.65.3", path = "../swc_ecma_ast"}
|
||||
swc_ecma_codegen = {version = "0.89.2", path = "../swc_ecma_codegen", optional = true}
|
||||
swc_ecma_codegen = {version = "0.89.3", path = "../swc_ecma_codegen", optional = true}
|
||||
swc_ecma_dep_graph = {version = "0.58.0", path = "../swc_ecma_dep_graph", optional = true}
|
||||
swc_ecma_minifier = {version = "0.71.4", path = "../swc_ecma_minifier", optional = true}
|
||||
swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser", optional = true, default-features = false}
|
||||
|
Loading…
Reference in New Issue
Block a user