Skip to content

Commit

Permalink
chore: Publish crates
Browse files Browse the repository at this point in the history
  • Loading branch information
swc-bot committed Dec 19, 2022
1 parent 1d3e06a commit 8008d86
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 14 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
- **(css/minifier)** Don't remove custom variables with different case (#6655) ([dd7280d](https://github.com/swc-project/swc/commit/dd7280d5bda960292bf5f4e12816d5a340277222))


- **(css/minifier)** Fix a bug with a modern hash (#6664) ([1d3e06a](https://github.com/swc-project/swc/commit/1d3e06aa886ffd8b18044c42a899fc3c780a6179))


- **(es/minifier)** Abort IIFE invoker completely on eval (#6659) ([bb9fab8](https://github.com/swc-project/swc/commit/bb9fab8d0358262b8236c372d62660a50b5b3417))

### Features
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/swc_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_core"
repository = "https://github.com/swc-project/swc.git"
version = "0.48.29"
version = "0.48.30"
[package.metadata.docs.rs]
features = [
"common_perf",
Expand Down Expand Up @@ -348,7 +348,7 @@ swc_cached = { optional = true, version = "0.3.15", path =
swc_common = { optional = true, version = "0.29.23", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.131.3", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.141.8", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.106.15", path = "../swc_css_minifier" }
swc_css_minifier = { optional = true, version = "0.106.16", path = "../swc_css_minifier" }
swc_css_modules = { optional = true, version = "0.17.12", path = "../swc_css_modules" }
swc_css_parser = { optional = true, version = "0.140.8", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.142.12", path = "../swc_css_prefixer" }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_css/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css"
repository = "https://github.com/swc-project/swc.git"
version = "0.144.23"
version = "0.144.24"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -25,7 +25,7 @@ prefixer = ["swc_css_prefixer"]
swc_css_ast = {version = "0.131.3", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.141.8", path = "../swc_css_codegen"}
swc_css_compat = {version = "0.16.12", path = "../swc_css_compat", optional = true}
swc_css_minifier = {version = "0.106.15", path = "../swc_css_minifier", optional = true}
swc_css_minifier = {version = "0.106.16", path = "../swc_css_minifier", optional = true}
swc_css_modules = {version = "0.17.12", path = "../swc_css_modules", optional = true}
swc_css_parser = {version = "0.140.8", path = "../swc_css_parser"}
swc_css_prefixer = {version = "0.142.12", path = "../swc_css_prefixer", optional = true}
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_css_minifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.106.15"
version = "0.106.16"

[lib]
bench = false
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_html/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_html"
repository = "https://github.com/swc-project/swc.git"
version = "0.100.23"
version = "0.100.24"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies]
swc_html_ast = {version = "0.28.15", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.37.27", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.97.23", path = "../swc_html_minifier", optional = true}
swc_html_minifier = {version = "0.97.24", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.34.26", path = "../swc_html_parser"}
swc_html_visit = {version = "0.28.15", path = "../swc_html_visit"}
4 changes: 2 additions & 2 deletions crates/swc_html_minifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_html_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.97.23"
version = "0.97.24"

[lib]
bench = false
Expand All @@ -24,7 +24,7 @@ swc_cached = { version = "0.3.15", path = "../swc_cached" }
swc_common = { version = "0.29.23", path = "../swc_common" }
swc_css_ast = { version = "0.131.3", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.141.8", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.106.15", path = "../swc_css_minifier" }
swc_css_minifier = { version = "0.106.16", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.140.8", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.95.7", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.128.13", path = "../swc_ecma_codegen" }
Expand Down

0 comments on commit 8008d86

Please sign in to comment.