chore: Publish crates

This commit is contained in:
Donny 2022-01-29 12:10:57 +09:00
parent b31619d48e
commit c49ffc2c8b
10 changed files with 51 additions and 39 deletions

View File

@ -37,6 +37,18 @@
- **(node-swc)** Speed up `parse` and `parseFile` (#3380) ([0359deb](https://github.com/swc-project/swc/commit/0359deb4841be743d73db4536d4a22ac797d7f65)) - **(node-swc)** Speed up `parse` and `parseFile` (#3380) ([0359deb](https://github.com/swc-project/swc/commit/0359deb4841be743d73db4536d4a22ac797d7f65))
### Refactor
- **(css/ast)** Refactor delimited values (#3397) ([b31619d](https://github.com/swc-project/swc/commit/b31619d48e2caa29ae581331eaf2ed4c4bb93683))
- **(es/minifier)** Remove unused crates (#3395) ([74b4330](https://github.com/swc-project/swc/commit/74b433080bf79026fbcb905d7f0fba435822df68))
- **(es/parser)** Flatten tests to make `git` faster (#3393) ([839d0ac](https://github.com/swc-project/swc/commit/839d0ac480f0a702ac40bf14ba84d192cde47ec6))
## [1.2.135] - 2022-01-27 ## [1.2.135] - 2022-01-27
### Bug Fixes ### Bug Fixes

16
Cargo.lock generated
View File

@ -2751,7 +2751,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css" name = "swc_css"
version = "0.56.2" version = "0.57.0"
dependencies = [ dependencies = [
"swc_css_ast", "swc_css_ast",
"swc_css_codegen", "swc_css_codegen",
@ -2763,7 +2763,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_ast" name = "swc_css_ast"
version = "0.52.0" version = "0.53.0"
dependencies = [ dependencies = [
"is-macro", "is-macro",
"serde", "serde",
@ -2774,7 +2774,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_codegen" name = "swc_css_codegen"
version = "0.54.1" version = "0.55.0"
dependencies = [ dependencies = [
"auto_impl", "auto_impl",
"bitflags", "bitflags",
@ -2800,7 +2800,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_minifier" name = "swc_css_minifier"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"swc_atoms", "swc_atoms",
"swc_common", "swc_common",
@ -2813,7 +2813,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_parser" name = "swc_css_parser"
version = "0.56.1" version = "0.57.0"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"lexical", "lexical",
@ -2828,7 +2828,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_utils" name = "swc_css_utils"
version = "0.49.0" version = "0.50.0"
dependencies = [ dependencies = [
"swc_atoms", "swc_atoms",
"swc_common", "swc_common",
@ -2838,7 +2838,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_css_visit" name = "swc_css_visit"
version = "0.51.0" version = "0.52.0"
dependencies = [ dependencies = [
"swc_atoms", "swc_atoms",
"swc_common", "swc_common",
@ -3493,7 +3493,7 @@ version = "0.24.0"
[[package]] [[package]]
name = "swc_stylis" name = "swc_stylis"
version = "0.53.0" version = "0.54.0"
dependencies = [ dependencies = [
"swc_atoms", "swc_atoms",
"swc_common", "swc_common",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_css" name = "swc_css"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.56.2" version = "0.57.0"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -16,9 +16,9 @@ rustdoc-args = ["--cfg", "docsrs"]
minifier = ["swc_css_minifier"] minifier = ["swc_css_minifier"]
[dependencies] [dependencies]
swc_css_ast = {version = "0.52.0", path = "../swc_css_ast"} swc_css_ast = {version = "0.53.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.54.1", path = "../swc_css_codegen"} swc_css_codegen = {version = "0.55.0", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.18.0", path = "../swc_css_minifier", optional = true} swc_css_minifier = {version = "0.19.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.56.1", path = "../swc_css_parser"} swc_css_parser = {version = "0.57.0", path = "../swc_css_parser"}
swc_css_utils = {version = "0.49.0", path = "../swc_css_utils/"} swc_css_utils = {version = "0.50.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.51.0", path = "../swc_css_visit"} swc_css_visit = {version = "0.52.0", path = "../swc_css_visit"}

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_css_ast" name = "swc_css_ast"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.52.0" version = "0.53.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -6,17 +6,17 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_css_codegen" name = "swc_css_codegen"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.54.1" version = "0.55.0"
[dependencies] [dependencies]
auto_impl = "0.5.0" auto_impl = "0.5.0"
bitflags = "1.3.2" bitflags = "1.3.2"
swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"} swc_common = {version = "0.17.0", path = "../swc_common"}
swc_css_ast = {version = "0.52.0", path = "../swc_css_ast"} swc_css_ast = {version = "0.53.0", path = "../swc_css_ast"}
swc_css_codegen_macros = {version = "0.2.0", path = "../swc_css_codegen_macros"} swc_css_codegen_macros = {version = "0.2.0", path = "../swc_css_codegen_macros"}
[dev-dependencies] [dev-dependencies]
swc_css_parser = {version = "0.56.0", path = "../swc_css_parser"} swc_css_parser = {version = "0.57.0", path = "../swc_css_parser"}
swc_css_visit = {version = "0.51.0", path = "../swc_css_visit"} swc_css_visit = {version = "0.52.0", path = "../swc_css_visit"}
testing = {version = "0.18.0", path = "../testing"} testing = {version = "0.18.0", path = "../testing"}

View File

@ -6,17 +6,17 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_css_minifier" name = "swc_css_minifier"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.18.0" version = "0.19.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
swc_atoms = {version = "0.2.9", path = "../swc_atoms"} swc_atoms = {version = "0.2.9", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"} swc_common = {version = "0.17.0", path = "../swc_common"}
swc_css_ast = {version = "0.52.0", path = "../swc_css_ast"} swc_css_ast = {version = "0.53.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.51.0", path = "../swc_css_visit"} swc_css_visit = {version = "0.52.0", path = "../swc_css_visit"}
[dev-dependencies] [dev-dependencies]
swc_css_codegen = {version = "0.54.0", path = "../swc_css_codegen"} swc_css_codegen = {version = "0.55.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.56.0", path = "../swc_css_parser"} swc_css_parser = {version = "0.57.0", path = "../swc_css_parser"}
testing = {version = "0.18.0", path = "../testing"} testing = {version = "0.18.0", path = "../testing"}

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_css_parser" name = "swc_css_parser"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.56.1" version = "0.57.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features] [features]
@ -17,10 +17,10 @@ bitflags = "1.2.1"
lexical = "5.2.2" lexical = "5.2.2"
swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"} swc_common = {version = "0.17.0", path = "../swc_common"}
swc_css_ast = {version = "0.52.0", path = "../swc_css_ast"} swc_css_ast = {version = "0.53.0", path = "../swc_css_ast"}
[dev-dependencies] [dev-dependencies]
serde = "1.0.127" serde = "1.0.127"
serde_json = "1.0.66" serde_json = "1.0.66"
swc_css_visit = {version = "0.51.0", path = "../swc_css_visit"} swc_css_visit = {version = "0.52.0", path = "../swc_css_visit"}
testing = {version = "0.18.0", path = "../testing"} testing = {version = "0.18.0", path = "../testing"}

View File

@ -6,11 +6,11 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_css_utils" name = "swc_css_utils"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.49.0" version = "0.50.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"} swc_common = {version = "0.17.0", path = "../swc_common"}
swc_css_ast = {version = "0.52.0", path = "../swc_css_ast"} swc_css_ast = {version = "0.53.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.51.0", path = "../swc_css_visit"} swc_css_visit = {version = "0.52.0", path = "../swc_css_visit"}

View File

@ -6,12 +6,12 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_css_visit" name = "swc_css_visit"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.51.0" version = "0.52.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"} swc_common = {version = "0.17.0", path = "../swc_common"}
swc_css_ast = {version = "0.52.0", path = "../swc_css_ast"} swc_css_ast = {version = "0.53.0", path = "../swc_css_ast"}
swc_visit = {version = "0.3.0", path = "../swc_visit"} swc_visit = {version = "0.3.0", path = "../swc_visit"}

View File

@ -6,18 +6,18 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_stylis" name = "swc_stylis"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.53.0" version = "0.54.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"} swc_common = {version = "0.17.0", path = "../swc_common"}
swc_css_ast = {version = "0.52.0", path = "../swc_css_ast"} swc_css_ast = {version = "0.53.0", path = "../swc_css_ast"}
swc_css_utils = {version = "0.49.0", path = "../swc_css_utils/"} swc_css_utils = {version = "0.50.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.51.0", path = "../swc_css_visit"} swc_css_visit = {version = "0.52.0", path = "../swc_css_visit"}
[dev-dependencies] [dev-dependencies]
swc_css_codegen = {version = "0.54.0", path = "../swc_css_codegen"} swc_css_codegen = {version = "0.55.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.56.0", path = "../swc_css_parser"} swc_css_parser = {version = "0.57.0", path = "../swc_css_parser"}
testing = {version = "0.18.0", path = "../testing"} testing = {version = "0.18.0", path = "../testing"}