Skip to content

Commit 287c2f2

Browse files
committed
chore: Publish crates
1 parent 842abd4 commit 287c2f2

File tree

13 files changed

+40
-37
lines changed

13 files changed

+40
-37
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
- **(css/codegen)** Fix codegen of pseudo class selectors (#6186) ([4fba0db](https://github.com/swc-project/swc/commit/4fba0db3d9a4ffc6c13e134b3c75441737ff83d5))
99

1010

11+
- **(es/minifier)** Remove wrong rule (#6201) ([842abd4](https://github.com/swc-project/swc/commit/842abd45759a31e9b6ef2b3a0679dee3ad335791))
12+
13+
1114
- **(html/minifier)** Avoid `;` at the end of js (#6188) ([5571c0c](https://github.com/swc-project/swc/commit/5571c0c2029577929ec547948319497144c34c28))
1215

1316

Cargo.lock

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/binding_macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
license = "Apache-2.0"
66
name = "binding_macros"
77
repository = "https://github.com/swc-project/swc.git"
8-
version = "0.20.39"
8+
version = "0.20.40"
99

1010
[lib]
1111
bench = false
@@ -30,7 +30,7 @@ binding_wasm = [
3030

3131
[dependencies]
3232
# Common deps for the SWC imports
33-
swc = { optional = true, version = "0.232.39", path = "../swc" }
33+
swc = { optional = true, version = "0.232.40", path = "../swc" }
3434
swc_common = { optional = true, version = "0.29.9", path = "../swc_common" }
3535
swc_ecma_ast = { optional = true, version = "0.94.12", path = "../swc_ecma_ast" }
3636
swc_ecma_transforms = { optional = true, version = "0.198.18", path = "../swc_ecma_transforms" }

crates/dbg-swc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
license = "Apache-2.0"
66
name = "dbg-swc"
77
repository = "https://github.com/kdy1/dbg-swc.git"
8-
version = "0.58.48"
8+
version = "0.58.49"
99

1010
[[bin]]
1111
bench = false
@@ -27,7 +27,7 @@ swc_common = { version = "0.29.9", features = [
2727
], path = "../swc_common" }
2828
swc_ecma_ast = { version = "0.94.12", path = "../swc_ecma_ast" }
2929
swc_ecma_codegen = { version = "0.127.18", path = "../swc_ecma_codegen" }
30-
swc_ecma_minifier = { version = "0.159.34", path = "../swc_ecma_minifier", features = [
30+
swc_ecma_minifier = { version = "0.159.35", path = "../swc_ecma_minifier", features = [
3131
"concurrent",
3232
] }
3333
swc_ecma_parser = { version = "0.122.14", path = "../swc_ecma_parser" }

crates/swc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
99
license = "Apache-2.0"
1010
name = "swc"
1111
repository = "https://github.com/swc-project/swc.git"
12-
version = "0.232.39"
12+
version = "0.232.40"
1313

1414
[lib]
1515
bench = false
@@ -75,7 +75,7 @@ swc_ecma_loader = { version = "0.41.10", path = "../swc_ecma_loader", features =
7575
"node",
7676
"tsc",
7777
] }
78-
swc_ecma_minifier = { version = "0.159.34", path = "../swc_ecma_minifier" }
78+
swc_ecma_minifier = { version = "0.159.35", path = "../swc_ecma_minifier" }
7979
swc_ecma_parser = { version = "0.122.14", path = "../swc_ecma_parser" }
8080
swc_ecma_preset_env = { version = "0.174.18", path = "../swc_ecma_preset_env" }
8181
swc_ecma_transforms = { version = "0.198.18", path = "../swc_ecma_transforms", features = [

crates/swc_bundler/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ include = ["Cargo.toml", "build.rs", "src/**/*.rs", "src/**/*.js"]
99
license = "Apache-2.0"
1010
name = "swc_bundler"
1111
repository = "https://github.com/swc-project/swc.git"
12-
version = "0.192.34"
12+
version = "0.192.35"
1313

1414
[package.metadata.docs.rs]
1515
all-features = true
@@ -61,7 +61,7 @@ swc_ecma_loader = { version = "0.41.10", path = "../swc_ecma_loader", features =
6161
"node",
6262
"cache",
6363
] }
64-
swc_ecma_minifier = { version = "0.159.34", path = "../swc_ecma_minifier", features = [
64+
swc_ecma_minifier = { version = "0.159.35", path = "../swc_ecma_minifier", features = [
6565
"concurrent",
6666
] }
6767
swc_ecma_transforms_proposal = { version = "0.144.14", path = "../swc_ecma_transforms_proposal" }

crates/swc_core/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "Apache-2.0"
77
name = "swc_core"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.39.6"
9+
version = "0.39.7"
1010
[package.metadata.docs.rs]
1111
features = [
1212
"common_perf",
@@ -317,10 +317,10 @@ wasmer = { optional = true, version = "2.3.0", default-features = false }
317317
wasmer-wasi = { optional = true, version = "2.3.0", default-features = false }
318318

319319
# swc_* dependencies
320-
binding_macros = { optional = true, version = "0.20.39", path = "../binding_macros" }
321-
swc = { optional = true, version = "0.232.39", path = "../swc" }
320+
binding_macros = { optional = true, version = "0.20.40", path = "../binding_macros" }
321+
swc = { optional = true, version = "0.232.40", path = "../swc" }
322322
swc_atoms = { optional = true, version = "0.4.22", path = "../swc_atoms" }
323-
swc_bundler = { optional = true, version = "0.192.34", path = "../swc_bundler" }
323+
swc_bundler = { optional = true, version = "0.192.35", path = "../swc_bundler" }
324324
swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" }
325325
swc_common = { optional = true, version = "0.29.9", path = "../swc_common" }
326326
swc_css_ast = { optional = true, version = "0.123.1", path = "../swc_css_ast" }
@@ -333,7 +333,7 @@ swc_css_visit = { optional = true, version = "0.122.1", path
333333
swc_ecma_ast = { optional = true, version = "0.94.12", path = "../swc_ecma_ast" }
334334
swc_ecma_codegen = { optional = true, version = "0.127.18", path = "../swc_ecma_codegen" }
335335
swc_ecma_loader = { optional = true, version = "0.41.10", path = "../swc_ecma_loader" }
336-
swc_ecma_minifier = { optional = true, version = "0.159.34", path = "../swc_ecma_minifier" }
336+
swc_ecma_minifier = { optional = true, version = "0.159.35", path = "../swc_ecma_minifier" }
337337
swc_ecma_parser = { optional = true, version = "0.122.14", path = "../swc_ecma_parser" }
338338
swc_ecma_preset_env = { optional = true, version = "0.174.18", path = "../swc_ecma_preset_env" }
339339
swc_ecma_quote_macros = { optional = true, version = "0.33.15", path = "../swc_ecma_quote_macros" }
@@ -347,7 +347,7 @@ swc_ecma_transforms_typescript = { optional = true, version = "0.159.16", path
347347
swc_ecma_utils = { optional = true, version = "0.105.19", path = "../swc_ecma_utils" }
348348
swc_ecma_visit = { optional = true, version = "0.80.12", path = "../swc_ecma_visit" }
349349
swc_node_base = { optional = true, version = "0.5.5", path = "../swc_node_base" }
350-
swc_node_bundler = { optional = true, version = "0.18.39", path = "../swc_node_bundler" }
350+
swc_node_bundler = { optional = true, version = "0.18.40", path = "../swc_node_bundler" }
351351
swc_nodejs_common = { optional = true, version = "0.0.1", path = "../swc_nodejs_common" }
352352
swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" }
353353
swc_plugin_macro = { optional = true, version = "0.9.8", path = "../swc_plugin_macro" }

crates/swc_ecma_minifier/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/lists/*.json"]
77
license = "Apache-2.0"
88
name = "swc_ecma_minifier"
99
repository = "https://github.com/swc-project/swc.git"
10-
version = "0.159.34"
10+
version = "0.159.35"
1111

1212
[package.metadata.docs.rs]
1313
all-features = true

crates/swc_ecmascript/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "Apache-2.0"
77
name = "swc_ecmascript"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.205.35"
9+
version = "0.205.36"
1010

1111
[package.metadata.docs.rs]
1212
all-features = true
@@ -42,7 +42,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
4242
swc_ecma_ast = { version = "0.94.12", path = "../swc_ecma_ast" }
4343
swc_ecma_codegen = { version = "0.127.18", path = "../swc_ecma_codegen", optional = true }
4444
swc_ecma_dep_graph = { version = "0.94.14", path = "../swc_ecma_dep_graph", optional = true }
45-
swc_ecma_minifier = { version = "0.159.34", path = "../swc_ecma_minifier", optional = true }
45+
swc_ecma_minifier = { version = "0.159.35", path = "../swc_ecma_minifier", optional = true }
4646
swc_ecma_parser = { version = "0.122.14", path = "../swc_ecma_parser", optional = true, default-features = false }
4747
swc_ecma_preset_env = { version = "0.174.18", path = "../swc_ecma_preset_env", optional = true }
4848
swc_ecma_quote = { version = "0.38.17", path = "../swc_ecma_quote", optional = true }

crates/swc_estree_compat/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
77
license = "Apache-2.0"
88
name = "swc_estree_compat"
99
repository = "https://github.com/swc-project/swc.git"
10-
version = "0.154.39"
10+
version = "0.154.40"
1111

1212
[package.metadata.docs.rs]
1313
all-features = true
@@ -38,7 +38,7 @@ swc_node_comments = { version = "0.16.9", path = "../swc_node_comments/" }
3838
[dev-dependencies]
3939
criterion = "0.3"
4040
pretty_assertions = "1.1"
41-
swc = { version = "0.232.39", path = "../swc" }
41+
swc = { version = "0.232.40", path = "../swc" }
4242
swc_ecma_ast = { version = "0.94.12", path = "../swc_ecma_ast" }
4343
swc_ecma_parser = { version = "0.122.14", path = "../swc_ecma_parser" }
4444
swc_ecma_transforms = { version = "0.198.18", path = "../swc_ecma_transforms/" }

crates/swc_html/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "Apache-2.0"
77
name = "swc_html"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.89.9"
9+
version = "0.89.10"
1010

1111
[package.metadata.docs.rs]
1212
all-features = true
@@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
2121
[dependencies]
2222
swc_html_ast = {version = "0.26.11", path = "../swc_html_ast"}
2323
swc_html_codegen = {version = "0.35.13", path = "../swc_html_codegen"}
24-
swc_html_minifier = {version = "0.86.9", path = "../swc_html_minifier", optional = true}
24+
swc_html_minifier = {version = "0.86.10", path = "../swc_html_minifier", optional = true}
2525
swc_html_parser = {version = "0.32.12", path = "../swc_html_parser"}
2626
swc_html_visit = {version = "0.26.11", path = "../swc_html_visit"}

crates/swc_html_minifier/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "data/**/*.json"]
1010
license = "Apache-2.0"
1111
name = "swc_html_minifier"
1212
repository = "https://github.com/swc-project/swc.git"
13-
version = "0.86.9"
13+
version = "0.86.10"
1414

1515
[lib]
1616
bench = false
@@ -28,7 +28,7 @@ swc_css_minifier = { version = "0.98.3", path = "../swc_css_minifier" }
2828
swc_css_parser = { version = "0.132.2", path = "../swc_css_parser" }
2929
swc_ecma_ast = { version = "0.94.12", path = "../swc_ecma_ast" }
3030
swc_ecma_codegen = { version = "0.127.18", path = "../swc_ecma_codegen" }
31-
swc_ecma_minifier = { version = "0.159.34", path = "../swc_ecma_minifier" }
31+
swc_ecma_minifier = { version = "0.159.35", path = "../swc_ecma_minifier" }
3232
swc_ecma_parser = { version = "0.122.14", path = "../swc_ecma_parser" }
3333
swc_ecma_transforms_base = { version = "0.111.27", path = "../swc_ecma_transforms_base" }
3434
swc_ecma_visit = { version = "0.80.12", path = "../swc_ecma_visit" }

crates/swc_node_bundler/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
license = "Apache-2.0"
88
name = "swc_node_bundler"
99
repository = "https://github.com/swc-project/swc.git"
10-
version = "0.18.39"
10+
version = "0.18.40"
1111

1212
[lib]
1313
bench = false
@@ -26,9 +26,9 @@ regex = "1"
2626
serde = { version = "1", features = ["derive"] }
2727
serde_json = "1"
2828
string_enum = { version = "0.3.2", path = "../string_enum" }
29-
swc = { version = "0.232.39", path = "../swc" }
29+
swc = { version = "0.232.40", path = "../swc" }
3030
swc_atoms = { version = "0.4.22", path = "../swc_atoms" }
31-
swc_bundler = { version = "0.192.34", path = "../swc_bundler", features = [
31+
swc_bundler = { version = "0.192.35", path = "../swc_bundler", features = [
3232
"concurrent",
3333
] }
3434
swc_common = { version = "0.29.9", path = "../swc_common", features = [

0 commit comments

Comments
 (0)