Skip to content

Commit ed9a4ae

Browse files
committed
chore: Publish crates
1 parent a685c88 commit ed9a4ae

File tree

14 files changed

+44
-41
lines changed

14 files changed

+44
-41
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55

66

77

8+
- **(es/minifier)** Don't drop assignments to unused top-level variables (#7581) ([a685c88](https://github.com/swc-project/swc/commit/a685c88c61248e5bff98fb339a71b40b8fd4e528))
9+
10+
811
- **(es/parser)** Adjust context while parsing type arguments of TypeScript type queries (#7582) ([9d5dda1](https://github.com/swc-project/swc/commit/9d5dda12991dac031064b139eb61d2d03dcd8571))
912

1013

Cargo.lock

Lines changed: 12 additions & 12 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.52.25"
8+
version = "0.52.26"
99

1010
[lib]
1111
bench = false
@@ -33,7 +33,7 @@ binding_wasm = [
3333

3434
[dependencies]
3535
# Common deps for the SWC imports
36-
swc = { optional = true, version = "0.263.25", path = "../swc" }
36+
swc = { optional = true, version = "0.263.26", path = "../swc" }
3737
swc_common = { optional = true, version = "0.31.16", path = "../swc_common" }
3838
swc_ecma_ast = { optional = true, version = "0.106.6", path = "../swc_ecma_ast" }
3939
swc_ecma_transforms = { optional = true, version = "0.220.19", 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.83.30"
8+
version = "0.83.31"
99

1010
[[bin]]
1111
bench = false
@@ -32,7 +32,7 @@ swc_common = { version = "0.31.16", features = [
3232
], path = "../swc_common" }
3333
swc_ecma_ast = { version = "0.106.6", path = "../swc_ecma_ast" }
3434
swc_ecma_codegen = { version = "0.141.11", path = "../swc_ecma_codegen" }
35-
swc_ecma_minifier = { version = "0.183.22", path = "../swc_ecma_minifier", features = [
35+
swc_ecma_minifier = { version = "0.183.23", path = "../swc_ecma_minifier", features = [
3636
"concurrent",
3737
] }
3838
swc_ecma_parser = { version = "0.136.8", 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.263.25"
12+
version = "0.263.26"
1313

1414
[lib]
1515
bench = false
@@ -83,7 +83,7 @@ swc_ecma_loader = { version = "0.43.18", path = "../swc_ecma_loader", features =
8383
"node",
8484
"tsc",
8585
] }
86-
swc_ecma_minifier = { version = "0.183.22", path = "../swc_ecma_minifier" }
86+
swc_ecma_minifier = { version = "0.183.23", path = "../swc_ecma_minifier" }
8787
swc_ecma_parser = { version = "0.136.8", path = "../swc_ecma_parser" }
8888
swc_ecma_preset_env = { version = "0.197.20", path = "../swc_ecma_preset_env" }
8989
swc_ecma_transforms = { version = "0.220.19", 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.216.22"
12+
version = "0.216.23"
1313

1414
[package.metadata.docs.rs]
1515
all-features = true
@@ -64,7 +64,7 @@ swc_ecma_loader = { version = "0.43.18", path = "../swc_ecma_loader", features =
6464
"node",
6565
"cache",
6666
] }
67-
swc_ecma_minifier = { version = "0.183.22", path = "../swc_ecma_minifier", features = [
67+
swc_ecma_minifier = { version = "0.183.23", path = "../swc_ecma_minifier", features = [
6868
"concurrent",
6969
] }
7070
swc_ecma_transforms_proposal = { version = "0.163.17", path = "../swc_ecma_transforms_proposal" }

crates/swc_core/Cargo.toml

Lines changed: 7 additions & 7 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.78.25"
9+
version = "0.78.26"
1010
[package.metadata.docs.rs]
1111
features = [
1212
"common_perf",
@@ -325,10 +325,10 @@ __visit = ["__ecma", "swc_ecma_visit"]
325325
once_cell = { optional = true, version = "1.18.0" }
326326

327327
# swc_* dependencies
328-
binding_macros = { optional = true, version = "0.52.25", path = "../binding_macros" }
329-
swc = { optional = true, version = "0.263.25", path = "../swc" }
328+
binding_macros = { optional = true, version = "0.52.26", path = "../binding_macros" }
329+
swc = { optional = true, version = "0.263.26", path = "../swc" }
330330
swc_atoms = { optional = true, version = "0.5.6", path = "../swc_atoms" }
331-
swc_bundler = { optional = true, version = "0.216.22", path = "../swc_bundler" }
331+
swc_bundler = { optional = true, version = "0.216.23", path = "../swc_bundler" }
332332
swc_cached = { optional = true, version = "0.3.17", path = "../swc_cached" }
333333
swc_common = { optional = true, version = "0.31.16", path = "../swc_common" }
334334
swc_css_ast = { optional = true, version = "0.137.16", path = "../swc_css_ast" }
@@ -343,7 +343,7 @@ swc_css_visit = { optional = true, version = "0.136.16", path
343343
swc_ecma_ast = { optional = true, version = "0.106.6", path = "../swc_ecma_ast" }
344344
swc_ecma_codegen = { optional = true, version = "0.141.11", path = "../swc_ecma_codegen" }
345345
swc_ecma_loader = { optional = true, version = "0.43.18", path = "../swc_ecma_loader" }
346-
swc_ecma_minifier = { optional = true, version = "0.183.22", path = "../swc_ecma_minifier" }
346+
swc_ecma_minifier = { optional = true, version = "0.183.23", path = "../swc_ecma_minifier" }
347347
swc_ecma_parser = { optional = true, version = "0.136.8", path = "../swc_ecma_parser" }
348348
swc_ecma_preset_env = { optional = true, version = "0.197.20", path = "../swc_ecma_preset_env" }
349349
swc_ecma_quote_macros = { optional = true, version = "0.47.8", path = "../swc_ecma_quote_macros" }
@@ -355,11 +355,11 @@ swc_ecma_transforms_proposal = { optional = true, version = "0.163.17", path
355355
swc_ecma_transforms_react = { optional = true, version = "0.175.18", path = "../swc_ecma_transforms_react" }
356356
swc_ecma_transforms_testing = { optional = true, version = "0.132.14", path = "../swc_ecma_transforms_testing" }
357357
swc_ecma_transforms_typescript = { optional = true, version = "0.179.19", path = "../swc_ecma_transforms_typescript" }
358-
swc_ecma_usage_analyzer = { optional = true, version = "0.15.12", path = "../swc_ecma_usage_analyzer" }
358+
swc_ecma_usage_analyzer = { optional = true, version = "0.15.13", path = "../swc_ecma_usage_analyzer" }
359359
swc_ecma_utils = { optional = true, version = "0.119.10", path = "../swc_ecma_utils" }
360360
swc_ecma_visit = { optional = true, version = "0.92.5", path = "../swc_ecma_visit" }
361361
swc_node_base = { optional = true, version = "0.5.8", path = "../swc_node_base" }
362-
swc_node_bundler = { optional = true, version = "0.50.25", path = "../swc_node_bundler" }
362+
swc_node_bundler = { optional = true, version = "0.50.26", path = "../swc_node_bundler" }
363363
swc_nodejs_common = { optional = true, version = "0.0.8", path = "../swc_nodejs_common" }
364364
swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" }
365365
swc_plugin_macro = { optional = true, version = "0.9.15", path = "../swc_plugin_macro" }

crates/swc_ecma_minifier/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", "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.183.22"
10+
version = "0.183.23"
1111

1212
[package.metadata.docs.rs]
1313
all-features = true
@@ -62,7 +62,7 @@ swc_ecma_codegen = { version = "0.141.11", path = "../swc_ecma_codegen" }
6262
swc_ecma_parser = { version = "0.136.8", path = "../swc_ecma_parser" }
6363
swc_ecma_transforms_base = { version = "0.129.14", path = "../swc_ecma_transforms_base" }
6464
swc_ecma_transforms_optimization = { version = "0.189.19", path = "../swc_ecma_transforms_optimization" }
65-
swc_ecma_usage_analyzer = { version = "0.15.12", path = "../swc_ecma_usage_analyzer" }
65+
swc_ecma_usage_analyzer = { version = "0.15.13", path = "../swc_ecma_usage_analyzer" }
6666
swc_ecma_utils = { version = "0.119.10", path = "../swc_ecma_utils" }
6767
swc_ecma_visit = { version = "0.92.5", path = "../swc_ecma_visit" }
6868
swc_timer = { version = "0.19.19", path = "../swc_timer" }

crates/swc_ecma_usage_analyzer/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"]
77
license = "Apache-2.0"
88
name = "swc_ecma_usage_analyzer"
99
repository = "https://github.com/swc-project/swc.git"
10-
version = "0.15.12"
10+
version = "0.15.13"
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.230.23"
9+
version = "0.230.24"
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.106.6", path = "../swc_ecma_ast" }
4343
swc_ecma_codegen = { version = "0.141.11", path = "../swc_ecma_codegen", optional = true }
4444
swc_ecma_dep_graph = { version = "0.108.8", path = "../swc_ecma_dep_graph", optional = true }
45-
swc_ecma_minifier = { version = "0.183.22", path = "../swc_ecma_minifier", optional = true }
45+
swc_ecma_minifier = { version = "0.183.23", path = "../swc_ecma_minifier", optional = true }
4646
swc_ecma_parser = { version = "0.136.8", path = "../swc_ecma_parser", optional = true, default-features = false }
4747
swc_ecma_preset_env = { version = "0.197.20", path = "../swc_ecma_preset_env", optional = true }
4848
swc_ecma_quote = { version = "0.52.8", 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.186.26"
10+
version = "0.186.27"
1111

1212
[package.metadata.docs.rs]
1313
all-features = true
@@ -40,7 +40,7 @@ swc_node_comments = { version = "0.18.16", path = "../swc_node_comments/" }
4040
criterion = "0.5"
4141
pretty_assertions = "1.3"
4242

43-
swc = { version = "0.263.25", path = "../swc" }
43+
swc = { version = "0.263.26", path = "../swc" }
4444
swc_ecma_ast = { version = "0.106.6", path = "../swc_ecma_ast" }
4545
swc_ecma_parser = { version = "0.136.8", path = "../swc_ecma_parser" }
4646
swc_ecma_transforms = { version = "0.220.19", 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.126.22"
9+
version = "0.126.23"
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.31.16", path = "../swc_html_ast"}
2323
swc_html_codegen = {version = "0.40.19", path = "../swc_html_codegen"}
24-
swc_html_minifier = {version = "0.123.22", path = "../swc_html_minifier", optional = true}
24+
swc_html_minifier = {version = "0.123.23", path = "../swc_html_minifier", optional = true}
2525
swc_html_parser = {version = "0.37.19", path = "../swc_html_parser"}
2626
swc_html_visit = {version = "0.31.16", 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.123.22"
13+
version = "0.123.23"
1414

1515
[lib]
1616
bench = false
@@ -31,7 +31,7 @@ swc_ecma_ast = { version = "0.106.6", path = "../swc_ecma_ast" }
3131
swc_ecma_codegen = { version = "0.141.11", path = "../swc_ecma_codegen", features = [
3232
"serde-impl",
3333
] }
34-
swc_ecma_minifier = { version = "0.183.22", path = "../swc_ecma_minifier", features = [
34+
swc_ecma_minifier = { version = "0.183.23", path = "../swc_ecma_minifier", features = [
3535
"extra-serde",
3636
] }
3737
swc_ecma_parser = { version = "0.136.8", path = "../swc_ecma_parser" }

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.50.25"
10+
version = "0.50.26"
1111

1212
[lib]
1313
bench = false
@@ -29,9 +29,9 @@ serde_json = "1"
2929
tracing = "0.1.37"
3030

3131
string_enum = { version = "0.4.1", path = "../string_enum" }
32-
swc = { version = "0.263.25", path = "../swc" }
32+
swc = { version = "0.263.26", path = "../swc" }
3333
swc_atoms = { version = "0.5.6", path = "../swc_atoms" }
34-
swc_bundler = { version = "0.216.22", path = "../swc_bundler", features = [
34+
swc_bundler = { version = "0.216.23", path = "../swc_bundler", features = [
3535
"concurrent",
3636
] }
3737
swc_common = { version = "0.31.16", path = "../swc_common", features = [

0 commit comments

Comments
 (0)