Skip to content

Commit e42b60b

Browse files
committed
chore: Publish crates
1 parent a27ffd2 commit e42b60b

File tree

16 files changed

+63
-57
lines changed

16 files changed

+63
-57
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@
3434

3535
- **(es/resolver)** Use type context for `export =` if it's unresolved (#6963) ([e946c43](https://github.com/swc-project/swc/commit/e946c43f4e0640bb7ad2470c9c5979583ced2e23))
3636

37+
### Features
38+
39+
40+
41+
- **(es/minifier)** Drop unused import bindings (#6967) ([a27ffd2](https://github.com/swc-project/swc/commit/a27ffd22423af6e85fa821c2bb3bbd01e199f472))
42+
3743
### Miscellaneous Tasks
3844

3945

Cargo.lock

Lines changed: 14 additions & 14 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: 3 additions & 3 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.34.31"
8+
version = "0.34.32"
99

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

3434
[dependencies]
3535
# Common deps for the SWC imports
36-
swc = { optional = true, version = "0.245.31", path = "../swc" }
36+
swc = { optional = true, version = "0.245.32", path = "../swc" }
3737
swc_common = { optional = true, version = "0.29.31", path = "../swc_common" }
3838
swc_ecma_ast = { optional = true, version = "0.96.6", path = "../swc_ecma_ast" }
39-
swc_ecma_transforms = { optional = true, version = "0.203.23", path = "../swc_ecma_transforms" }
39+
swc_ecma_transforms = { optional = true, version = "0.203.24", path = "../swc_ecma_transforms" }
4040
swc_ecma_visit = { optional = true, version = "0.82.6", path = "../swc_ecma_visit" }
4141

4242
# Optional deps for the wasm binding macro

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.66.49"
8+
version = "0.66.50"
99

1010
[[bin]]
1111
bench = false
@@ -27,7 +27,7 @@ swc_common = { version = "0.29.31", features = [
2727
], path = "../swc_common" }
2828
swc_ecma_ast = { version = "0.96.6", path = "../swc_ecma_ast" }
2929
swc_ecma_codegen = { version = "0.129.13", path = "../swc_ecma_codegen" }
30-
swc_ecma_minifier = { version = "0.166.26", path = "../swc_ecma_minifier", features = [
30+
swc_ecma_minifier = { version = "0.166.27", path = "../swc_ecma_minifier", features = [
3131
"concurrent",
3232
] }
3333
swc_ecma_parser = { version = "0.124.10", path = "../swc_ecma_parser" }

crates/swc/Cargo.toml

Lines changed: 5 additions & 5 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.245.31"
12+
version = "0.245.32"
1313

1414
[lib]
1515
bench = false
@@ -79,10 +79,10 @@ swc_ecma_loader = { version = "0.41.33", path = "../swc_ecma_loader", features =
7979
"node",
8080
"tsc",
8181
] }
82-
swc_ecma_minifier = { version = "0.166.26", path = "../swc_ecma_minifier" }
82+
swc_ecma_minifier = { version = "0.166.27", path = "../swc_ecma_minifier" }
8383
swc_ecma_parser = { version = "0.124.10", path = "../swc_ecma_parser" }
84-
swc_ecma_preset_env = { version = "0.180.25", path = "../swc_ecma_preset_env" }
85-
swc_ecma_transforms = { version = "0.203.23", path = "../swc_ecma_transforms", features = [
84+
swc_ecma_preset_env = { version = "0.180.26", path = "../swc_ecma_preset_env" }
85+
swc_ecma_transforms = { version = "0.203.24", path = "../swc_ecma_transforms", features = [
8686
"compat",
8787
"module",
8888
"optimization",
@@ -92,7 +92,7 @@ swc_ecma_transforms = { version = "0.203.23", path = "../swc_ecma_transforms", f
9292
] }
9393
swc_ecma_transforms_base = { version = "0.116.12", path = "../swc_ecma_transforms_base" }
9494
swc_ecma_transforms_compat = { version = "0.141.14", path = "../swc_ecma_transforms_compat" }
95-
swc_ecma_transforms_optimization = { version = "0.172.23", path = "../swc_ecma_transforms_optimization" }
95+
swc_ecma_transforms_optimization = { version = "0.172.24", path = "../swc_ecma_transforms_optimization" }
9696
swc_ecma_utils = { version = "0.107.10", path = "../swc_ecma_utils" }
9797
swc_ecma_visit = { version = "0.82.6", path = "../swc_ecma_visit" }
9898
swc_error_reporters = { version = "0.13.32", path = "../swc_error_reporters" }

crates/swc_bundler/Cargo.toml

Lines changed: 3 additions & 3 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.199.27"
12+
version = "0.199.28"
1313

1414
[package.metadata.docs.rs]
1515
all-features = true
@@ -43,7 +43,7 @@ swc_ecma_codegen = {version = "0.129.13", path = "../swc_ecma_codegen"}
4343
swc_ecma_loader = {version = "0.41.33", path = "../swc_ecma_loader"}
4444
swc_ecma_parser = {version = "0.124.10", path = "../swc_ecma_parser"}
4545
swc_ecma_transforms_base = {version = "0.116.12", path = "../swc_ecma_transforms_base"}
46-
swc_ecma_transforms_optimization = {version = "0.172.23", path = "../swc_ecma_transforms_optimization"}
46+
swc_ecma_transforms_optimization = {version = "0.172.24", path = "../swc_ecma_transforms_optimization"}
4747
swc_ecma_utils = {version = "0.107.10", path = "../swc_ecma_utils"}
4848
swc_ecma_visit = {version = "0.82.6", path = "../swc_ecma_visit"}
4949
swc_fast_graph = {version = "0.17.32", path = "../swc_fast_graph/"}
@@ -60,7 +60,7 @@ swc_ecma_loader = {version = "0.41.33", path = "../swc_ecma_loader", features =
6060
"node",
6161
"cache",
6262
]}
63-
swc_ecma_minifier = {version = "0.166.26", path = "../swc_ecma_minifier", features = [
63+
swc_ecma_minifier = {version = "0.166.27", path = "../swc_ecma_minifier", features = [
6464
"concurrent",
6565
]}
6666
swc_ecma_transforms_proposal = {version = "0.149.15", path = "../swc_ecma_transforms_proposal"}

crates/swc_core/Cargo.toml

Lines changed: 8 additions & 8 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.59.35"
9+
version = "0.59.36"
1010
[package.metadata.docs.rs]
1111
features = [
1212
"common_perf",
@@ -340,10 +340,10 @@ wasmer = { optional = true, version = "2.3.0", default-features = false }
340340
wasmer-wasi = { optional = true, version = "2.3.0", default-features = false }
341341

342342
# swc_* dependencies
343-
binding_macros = { optional = true, version = "0.34.31", path = "../binding_macros" }
344-
swc = { optional = true, version = "0.245.31", path = "../swc" }
343+
binding_macros = { optional = true, version = "0.34.32", path = "../binding_macros" }
344+
swc = { optional = true, version = "0.245.32", path = "../swc" }
345345
swc_atoms = { optional = true, version = "0.4.36", path = "../swc_atoms" }
346-
swc_bundler = { optional = true, version = "0.199.27", path = "../swc_bundler" }
346+
swc_bundler = { optional = true, version = "0.199.28", path = "../swc_bundler" }
347347
swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" }
348348
swc_common = { optional = true, version = "0.29.31", path = "../swc_common" }
349349
swc_css_ast = { optional = true, version = "0.134.4", path = "../swc_css_ast" }
@@ -357,14 +357,14 @@ swc_css_visit = { optional = true, version = "0.133.4", path
357357
swc_ecma_ast = { optional = true, version = "0.96.6", path = "../swc_ecma_ast" }
358358
swc_ecma_codegen = { optional = true, version = "0.129.13", path = "../swc_ecma_codegen" }
359359
swc_ecma_loader = { optional = true, version = "0.41.33", path = "../swc_ecma_loader" }
360-
swc_ecma_minifier = { optional = true, version = "0.166.26", path = "../swc_ecma_minifier" }
360+
swc_ecma_minifier = { optional = true, version = "0.166.27", path = "../swc_ecma_minifier" }
361361
swc_ecma_parser = { optional = true, version = "0.124.10", path = "../swc_ecma_parser" }
362-
swc_ecma_preset_env = { optional = true, version = "0.180.25", path = "../swc_ecma_preset_env" }
362+
swc_ecma_preset_env = { optional = true, version = "0.180.26", path = "../swc_ecma_preset_env" }
363363
swc_ecma_quote_macros = { optional = true, version = "0.35.10", path = "../swc_ecma_quote_macros" }
364364
swc_ecma_transforms_base = { optional = true, version = "0.116.12", path = "../swc_ecma_transforms_base" }
365365
swc_ecma_transforms_compat = { optional = true, version = "0.141.14", path = "../swc_ecma_transforms_compat" }
366366
swc_ecma_transforms_module = { optional = true, version = "0.158.17", path = "../swc_ecma_transforms_module" }
367-
swc_ecma_transforms_optimization = { optional = true, version = "0.172.23", path = "../swc_ecma_transforms_optimization" }
367+
swc_ecma_transforms_optimization = { optional = true, version = "0.172.24", path = "../swc_ecma_transforms_optimization" }
368368
swc_ecma_transforms_proposal = { optional = true, version = "0.149.15", path = "../swc_ecma_transforms_proposal" }
369369
swc_ecma_transforms_react = { optional = true, version = "0.160.19", path = "../swc_ecma_transforms_react" }
370370
swc_ecma_transforms_testing = { optional = true, version = "0.119.12", path = "../swc_ecma_transforms_testing" }
@@ -373,7 +373,7 @@ swc_ecma_usage_analyzer = { optional = true, version = "0.3.8", path =
373373
swc_ecma_utils = { optional = true, version = "0.107.10", path = "../swc_ecma_utils" }
374374
swc_ecma_visit = { optional = true, version = "0.82.6", path = "../swc_ecma_visit" }
375375
swc_node_base = { optional = true, version = "0.5.8", path = "../swc_node_base" }
376-
swc_node_bundler = { optional = true, version = "0.32.32", path = "../swc_node_bundler" }
376+
swc_node_bundler = { optional = true, version = "0.32.33", path = "../swc_node_bundler" }
377377
swc_nodejs_common = { optional = true, version = "0.0.5", path = "../swc_nodejs_common" }
378378
swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" }
379379
swc_plugin_macro = { optional = true, version = "0.9.10", 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.166.26"
10+
version = "0.166.27"
1111

1212
[package.metadata.docs.rs]
1313
all-features = true
@@ -53,7 +53,7 @@ swc_ecma_ast = {version = "0.96.6", path = "../swc_ecma_ast"}
5353
swc_ecma_codegen = {version = "0.129.13", path = "../swc_ecma_codegen"}
5454
swc_ecma_parser = {version = "0.124.10", path = "../swc_ecma_parser"}
5555
swc_ecma_transforms_base = {version = "0.116.12", path = "../swc_ecma_transforms_base"}
56-
swc_ecma_transforms_optimization = {version = "0.172.23", path = "../swc_ecma_transforms_optimization"}
56+
swc_ecma_transforms_optimization = {version = "0.172.24", path = "../swc_ecma_transforms_optimization"}
5757
swc_ecma_usage_analyzer = {version = "0.3.8", path = "../swc_ecma_usage_analyzer"}
5858
swc_ecma_utils = {version = "0.107.10", path = "../swc_ecma_utils"}
5959
swc_ecma_visit = {version = "0.82.6", path = "../swc_ecma_visit"}

crates/swc_ecma_preset_env/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
77
license = "Apache-2.0"
88
name = "swc_ecma_preset_env"
9-
version = "0.180.25"
9+
version = "0.180.26"
1010

1111
[lib]
1212
bench = false
@@ -26,7 +26,7 @@ string_enum = { version = "0.3.2", path = "../string_enum" }
2626
swc_atoms = { version = "0.4.36", path = "../swc_atoms" }
2727
swc_common = { version = "0.29.31", path = "../swc_common" }
2828
swc_ecma_ast = { version = "0.96.6", path = "../swc_ecma_ast" }
29-
swc_ecma_transforms = { version = "0.203.23", path = "../swc_ecma_transforms", features = [
29+
swc_ecma_transforms = { version = "0.203.24", path = "../swc_ecma_transforms", features = [
3030
"compat",
3131
"proposal",
3232
] }

crates/swc_ecma_transforms/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_ecma_transforms"
99
repository = "https://github.com/swc-project/swc.git"
10-
version = "0.203.23"
10+
version = "0.203.24"
1111

1212
[package.metadata.docs.rs]
1313
all-features = true
@@ -37,7 +37,7 @@ swc_ecma_ast = { version = "0.96.6", path = "../swc_ecma_ast
3737
swc_ecma_transforms_base = { version = "0.116.12", path = "../swc_ecma_transforms_base" }
3838
swc_ecma_transforms_compat = { version = "0.141.14", path = "../swc_ecma_transforms_compat", optional = true }
3939
swc_ecma_transforms_module = { version = "0.158.17", path = "../swc_ecma_transforms_module", optional = true }
40-
swc_ecma_transforms_optimization = { version = "0.172.23", path = "../swc_ecma_transforms_optimization", optional = true }
40+
swc_ecma_transforms_optimization = { version = "0.172.24", path = "../swc_ecma_transforms_optimization", optional = true }
4141
swc_ecma_transforms_proposal = { version = "0.149.15", path = "../swc_ecma_transforms_proposal", optional = true }
4242
swc_ecma_transforms_react = { version = "0.160.19", path = "../swc_ecma_transforms_react", optional = true }
4343
swc_ecma_transforms_typescript = { version = "0.164.22", path = "../swc_ecma_transforms_typescript", optional = true }

0 commit comments

Comments
 (0)