chore: Publish crates

This commit is contained in:
SWC Bot 2022-04-01 11:55:47 +00:00
parent 6696a93b5c
commit 77abfef314
11 changed files with 50 additions and 44 deletions

View File

@ -22,6 +22,12 @@
- **(es/parser)** Improve performance by using `#[cold]` (#4215) ([1645562](https://github.com/swc-project/swc/commit/164556290b03cd530ad5158947cd28310c18fb12))
### Refactor
- **(css/ast)** Union all at-rules to one at-rule in AST (#4189) ([6696a93](https://github.com/swc-project/swc/commit/6696a93b5c7d005bb35be97e3f3ec52c1fe235aa))
## [1.2.162] - 2022-03-31
### Bug Fixes

18
Cargo.lock generated
View File

@ -2984,7 +2984,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.103.0"
version = "0.104.0"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -2996,7 +2996,7 @@ dependencies = [
[[package]]
name = "swc_css_ast"
version = "0.91.0"
version = "0.92.0"
dependencies = [
"is-macro",
"serde",
@ -3007,7 +3007,7 @@ dependencies = [
[[package]]
name = "swc_css_codegen"
version = "0.100.0"
version = "0.101.0"
dependencies = [
"auto_impl",
"bitflags",
@ -3033,7 +3033,7 @@ dependencies = [
[[package]]
name = "swc_css_lints"
version = "0.9.1"
version = "0.10.0"
dependencies = [
"auto_impl",
"parking_lot",
@ -3052,7 +3052,7 @@ dependencies = [
[[package]]
name = "swc_css_minifier"
version = "0.65.2"
version = "0.66.0"
dependencies = [
"swc_atoms",
"swc_common",
@ -3065,7 +3065,7 @@ dependencies = [
[[package]]
name = "swc_css_parser"
version = "0.99.0"
version = "0.100.0"
dependencies = [
"bitflags",
"lexical",
@ -3080,7 +3080,7 @@ dependencies = [
[[package]]
name = "swc_css_prefixer"
version = "0.99.4"
version = "0.100.0"
dependencies = [
"swc_atoms",
"swc_common",
@ -3094,7 +3094,7 @@ dependencies = [
[[package]]
name = "swc_css_utils"
version = "0.88.2"
version = "0.89.0"
dependencies = [
"swc_atoms",
"swc_common",
@ -3104,7 +3104,7 @@ dependencies = [
[[package]]
name = "swc_css_visit"
version = "0.90.0"
version = "0.91.0"
dependencies = [
"swc_atoms",
"swc_common",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css"
repository = "https://github.com/swc-project/swc.git"
version = "0.103.0"
version = "0.104.0"
[package.metadata.docs.rs]
all-features = true
@ -16,9 +16,9 @@ rustdoc-args = ["--cfg", "docsrs"]
minifier = ["swc_css_minifier"]
[dependencies]
swc_css_ast = { version = "0.91.0", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.100.0", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.65.0", path = "../swc_css_minifier", optional = true }
swc_css_parser = { version = "0.99.0", path = "../swc_css_parser" }
swc_css_utils = { version = "0.88.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.90.0", path = "../swc_css_visit" }
swc_css_ast = { version = "0.92.0", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.101.0", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.66.0", path = "../swc_css_minifier", optional = true }
swc_css_parser = { version = "0.100.0", path = "../swc_css_parser" }
swc_css_utils = { version = "0.89.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.91.0", path = "../swc_css_visit" }

View File

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

View File

@ -7,20 +7,20 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_codegen"
repository = "https://github.com/swc-project/swc.git"
version = "0.100.0"
version = "0.101.0"
[dependencies]
auto_impl = "0.5.0"
bitflags = "1.3.2"
swc_atoms = { version = "0.2.7", path = "../swc_atoms" }
swc_common = { version = "0.17.0", path = "../swc_common" }
swc_css_ast = { version = "0.91.0", path = "../swc_css_ast" }
swc_css_ast = { version = "0.92.0", path = "../swc_css_ast" }
swc_css_codegen_macros = { version = "0.2.0", path = "../swc_css_codegen_macros" }
[dev-dependencies]
swc_common = { version = "0.17.3", path = "../swc_common", features = [
"sourcemap",
] }
swc_css_parser = { version = "0.99.0", path = "../swc_css_parser" }
swc_css_visit = { version = "0.90.0", path = "../swc_css_visit" }
swc_css_parser = { version = "0.100.0", path = "../swc_css_parser" }
swc_css_visit = { version = "0.91.0", path = "../swc_css_visit" }
testing = { version = "0.19.0", path = "../testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_lints"
repository = "https://github.com/swc-project/swc.git"
version = "0.9.1"
version = "0.10.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -19,11 +19,11 @@ serde = { version = "1.0.133", features = ["derive"] }
swc_atoms = { version = "0.2.9", path = "../swc_atoms" }
swc_cached = { version = "0.1.0", path = "../swc_cached" }
swc_common = { version = "0.17.0", path = "../swc_common" }
swc_css_ast = { version = "0.91.0", path = "../swc_css_ast" }
swc_css_visit = { version = "0.90.0", path = "../swc_css_visit" }
swc_css_ast = { version = "0.92.0", path = "../swc_css_ast" }
swc_css_visit = { version = "0.91.0", path = "../swc_css_visit" }
thiserror = "1.0.30"
[dev-dependencies]
serde_json = "1.0.79"
swc_css_parser = { version = "0.99.0", path = "../swc_css_parser" }
swc_css_parser = { version = "0.100.0", path = "../swc_css_parser" }
testing = { version = "0.19.0", path = "../testing" }

View File

@ -7,17 +7,17 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.65.2"
version = "0.66.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
swc_atoms = { version = "0.2.9", path = "../swc_atoms" }
swc_common = { version = "0.17.0", path = "../swc_common" }
swc_css_ast = { version = "0.91.0", path = "../swc_css_ast" }
swc_css_visit = { version = "0.90.0", path = "../swc_css_visit" }
swc_css_ast = { version = "0.92.0", path = "../swc_css_ast" }
swc_css_visit = { version = "0.91.0", path = "../swc_css_visit" }
[dev-dependencies]
swc_css_codegen = { version = "0.100.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.99.0", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.101.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.100.0", path = "../swc_css_parser" }
testing = { version = "0.19.0", path = "../testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_parser"
repository = "https://github.com/swc-project/swc.git"
version = "0.99.0"
version = "0.100.0"
[features]
debug = []
@ -17,10 +17,10 @@ bitflags = "1.2.1"
lexical = "6.1.0"
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"}
swc_css_ast = {version = "0.91.0", path = "../swc_css_ast"}
swc_css_ast = {version = "0.92.0", path = "../swc_css_ast"}
[dev-dependencies]
serde = "1.0.127"
serde_json = "1.0.66"
swc_css_visit = {version = "0.90.0", path = "../swc_css_visit"}
swc_css_visit = {version = "0.91.0", path = "../swc_css_visit"}
testing = {version = "0.19.0", path = "../testing"}

View File

@ -7,18 +7,18 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_prefixer"
repository = "https://github.com/swc-project/swc.git"
version = "0.99.4"
version = "0.100.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
swc_atoms = { version = "0.2.7", path = "../swc_atoms" }
swc_common = { version = "0.17.0", path = "../swc_common" }
swc_css_ast = { version = "0.91.0", path = "../swc_css_ast" }
swc_css_utils = { version = "0.88.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.90.0", path = "../swc_css_visit" }
swc_css_ast = { version = "0.92.0", path = "../swc_css_ast" }
swc_css_utils = { version = "0.89.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.91.0", path = "../swc_css_visit" }
[dev-dependencies]
swc_css_codegen = { version = "0.100.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.99.0", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.101.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.100.0", path = "../swc_css_parser" }
testing = { version = "0.19.0", path = "../testing" }

View File

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

View File

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