Skip to content

Commit f4c6fd8

Browse files
committed
chore: Publish crates with swc_core v0.106.2
1 parent 1659c21 commit f4c6fd8

File tree

18 files changed

+30
-44
lines changed

18 files changed

+30
-44
lines changed

.changeset/lemon-panthers-try.md

-7
This file was deleted.

.changeset/spicy-hairs-run.md

-7
This file was deleted.

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/binding_macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ binding_wasm = [
3333

3434
[dependencies]
3535
# Common deps for the SWC imports
36-
swc = { optional = true, version = "0.289.0", path = "../swc" }
36+
swc = { optional = true, version = "0.289.1", path = "../swc" }
3737
swc_common = { optional = true, version = "0.40.0", path = "../swc_common" }
3838
swc_ecma_ast = { optional = true, version = "0.121.0", path = "../swc_ecma_ast" }
3939
swc_ecma_transforms = { optional = true, version = "0.243.0", path = "../swc_ecma_transforms" }

crates/dbg-swc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ swc_common = { version = "0.40.0", features = [
3333
], path = "../swc_common" }
3434
swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
3535
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
36-
swc_ecma_minifier = { version = "0.208.0", path = "../swc_ecma_minifier", features = [
36+
swc_ecma_minifier = { version = "0.208.1", path = "../swc_ecma_minifier", features = [
3737
"concurrent",
3838
] }
3939
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }

crates/swc/Cargo.toml

+5-5
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.289.0"
12+
version = "0.289.1"
1313

1414
[lib]
1515
bench = false
@@ -79,13 +79,13 @@ swc_config = { version = "0.1.13", path = "../swc_config" }
7979
swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
8080
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
8181
swc_ecma_ext_transforms = { version = "0.123.0", path = "../swc_ecma_ext_transforms" }
82-
swc_ecma_lints = { version = "0.104.0", path = "../swc_ecma_lints" }
82+
swc_ecma_lints = { version = "0.104.1", path = "../swc_ecma_lints" }
8383
swc_ecma_loader = { version = "0.52.1", path = "../swc_ecma_loader", features = [
8484
"cache",
8585
"node",
8686
"tsc",
8787
] }
88-
swc_ecma_minifier = { version = "0.208.0", path = "../swc_ecma_minifier" }
88+
swc_ecma_minifier = { version = "0.208.1", path = "../swc_ecma_minifier" }
8989
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
9090
swc_ecma_preset_env = { version = "0.221.0", path = "../swc_ecma_preset_env" }
9191
swc_ecma_transforms = { version = "0.243.0", path = "../swc_ecma_transforms", features = [
@@ -98,7 +98,7 @@ swc_ecma_transforms = { version = "0.243.0", path = "../swc_ecma_transforms", fe
9898
] }
9999
swc_ecma_transforms_base = { version = "0.149.0", path = "../swc_ecma_transforms_base" }
100100
swc_ecma_transforms_compat = { version = "0.175.0", path = "../swc_ecma_transforms_compat" }
101-
swc_ecma_transforms_optimization = { version = "0.212.0", path = "../swc_ecma_transforms_optimization" }
101+
swc_ecma_transforms_optimization = { version = "0.212.1", path = "../swc_ecma_transforms_optimization" }
102102
swc_ecma_utils = { version = "0.137.0", path = "../swc_ecma_utils" }
103103
swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
104104
swc_error_reporters = { version = "1.0.0", path = "../swc_error_reporters" }
@@ -136,7 +136,7 @@ codspeed-criterion-compat = { workspace = true }
136136
swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast", features = [
137137
"serde-impl",
138138
] }
139-
swc_ecma_lints = { version = "0.104.0", path = "../swc_ecma_lints", features = [
139+
swc_ecma_lints = { version = "0.104.1", path = "../swc_ecma_lints", features = [
140140
"non_critical_lints",
141141
] }
142142
swc_ecma_testing = { version = "0.29.0", path = "../swc_ecma_testing" }

crates/swc_bundler/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_co
4444
swc_ecma_loader = { version = "0.52.1", path = "../swc_ecma_loader" }
4545
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
4646
swc_ecma_transforms_base = { version = "0.149.0", path = "../swc_ecma_transforms_base" }
47-
swc_ecma_transforms_optimization = { version = "0.212.0", path = "../swc_ecma_transforms_optimization" }
47+
swc_ecma_transforms_optimization = { version = "0.212.1", path = "../swc_ecma_transforms_optimization" }
4848
swc_ecma_utils = { version = "0.137.0", path = "../swc_ecma_utils" }
4949
swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
5050
swc_fast_graph = { version = "1.0.0", path = "../swc_fast_graph/" }
@@ -63,7 +63,7 @@ swc_ecma_loader = { version = "0.52.1", path = "../swc_ecma_loader", features =
6363
"node",
6464
"cache",
6565
] }
66-
swc_ecma_minifier = { version = "0.208.0", path = "../swc_ecma_minifier", features = [
66+
swc_ecma_minifier = { version = "0.208.1", path = "../swc_ecma_minifier", features = [
6767
"concurrent",
6868
] }
6969
swc_ecma_transforms_proposal = { version = "0.183.0", path = "../swc_ecma_transforms_proposal" }

crates/swc_cli_impl/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ tracing-futures = { workspace = true }
3939
tracing-subscriber = { workspace = true, features = ["env-filter"] }
4040
walkdir = { workspace = true }
4141

42-
swc_core = { version = "0.106.1", features = [
42+
swc_core = { version = "0.106.2", features = [
4343
"trace_macro",
4444
"common_concurrent",
4545
"base_concurrent",

crates/swc_compiler_base/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ swc_common = { version = "0.40.0", path = "../swc_common", features = [
3030
swc_config = { version = "0.1.13", path = "../swc_config" }
3131
swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
3232
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
33-
swc_ecma_minifier = { version = "0.208.0", path = "../swc_ecma_minifier" }
33+
swc_ecma_minifier = { version = "0.208.1", path = "../swc_ecma_minifier" }
3434
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
3535
swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
3636
swc_timer = { version = "0.27.0", path = "../swc_timer" }

crates/swc_core/Cargo.toml

+5-5
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.106.1"
9+
version = "0.106.2"
1010
[package.metadata.docs.rs]
1111
features = [
1212
"allocator_node",
@@ -339,7 +339,7 @@ once_cell = { workspace = true, optional = true }
339339

340340
# swc_* dependencies
341341
binding_macros = { optional = true, version = "0.81.0", path = "../binding_macros" }
342-
swc = { optional = true, version = "0.289.0", path = "../swc" }
342+
swc = { optional = true, version = "0.289.1", path = "../swc" }
343343
swc_atoms = { optional = true, version = "1.0.0", path = "../swc_atoms" }
344344
swc_bundler = { optional = true, version = "0.241.0", path = "../swc_bundler" }
345345
swc_cached = { optional = true, version = "0.3.19", path = "../swc_cached" }
@@ -355,16 +355,16 @@ swc_css_utils = { optional = true, version = "0.144.0", path
355355
swc_css_visit = { optional = true, version = "0.146.0", path = "../swc_css_visit" }
356356
swc_ecma_ast = { optional = true, version = "0.121.0", path = "../swc_ecma_ast" }
357357
swc_ecma_codegen = { optional = true, version = "0.158.0", path = "../swc_ecma_codegen" }
358-
swc_ecma_lints = { optional = true, version = "0.104.0", path = "../swc_ecma_lints" }
358+
swc_ecma_lints = { optional = true, version = "0.104.1", path = "../swc_ecma_lints" }
359359
swc_ecma_loader = { optional = true, version = "0.52.1", path = "../swc_ecma_loader" }
360-
swc_ecma_minifier = { optional = true, version = "0.208.0", path = "../swc_ecma_minifier" }
360+
swc_ecma_minifier = { optional = true, version = "0.208.1", path = "../swc_ecma_minifier" }
361361
swc_ecma_parser = { optional = true, version = "0.152.1", path = "../swc_ecma_parser" }
362362
swc_ecma_preset_env = { optional = true, version = "0.221.0", path = "../swc_ecma_preset_env" }
363363
swc_ecma_quote_macros = { optional = true, version = "0.63.0", path = "../swc_ecma_quote_macros" }
364364
swc_ecma_transforms_base = { optional = true, version = "0.149.0", path = "../swc_ecma_transforms_base" }
365365
swc_ecma_transforms_compat = { optional = true, version = "0.175.0", path = "../swc_ecma_transforms_compat" }
366366
swc_ecma_transforms_module = { optional = true, version = "0.194.0", path = "../swc_ecma_transforms_module" }
367-
swc_ecma_transforms_optimization = { optional = true, version = "0.212.0", path = "../swc_ecma_transforms_optimization" }
367+
swc_ecma_transforms_optimization = { optional = true, version = "0.212.1", path = "../swc_ecma_transforms_optimization" }
368368
swc_ecma_transforms_proposal = { optional = true, version = "0.183.0", path = "../swc_ecma_transforms_proposal" }
369369
swc_ecma_transforms_react = { optional = true, version = "0.195.0", path = "../swc_ecma_transforms_react" }
370370
swc_ecma_transforms_testing = { optional = true, version = "0.152.0", path = "../swc_ecma_transforms_testing" }

crates/swc_ecma_lints/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
66
license = "Apache-2.0"
77
name = "swc_ecma_lints"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.104.0"
9+
version = "0.104.1"
1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1111

1212
[lib]

crates/swc_ecma_minifier/Cargo.toml

+2-2
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.208.0"
10+
version = "0.208.1"
1111

1212
[package.metadata.docs.rs]
1313
all-features = true
@@ -64,7 +64,7 @@ swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast", features = [
6464
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
6565
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
6666
swc_ecma_transforms_base = { version = "0.149.0", path = "../swc_ecma_transforms_base" }
67-
swc_ecma_transforms_optimization = { version = "0.212.0", path = "../swc_ecma_transforms_optimization" }
67+
swc_ecma_transforms_optimization = { version = "0.212.1", path = "../swc_ecma_transforms_optimization" }
6868
swc_ecma_usage_analyzer = { version = "0.33.0", path = "../swc_ecma_usage_analyzer" }
6969
swc_ecma_utils = { version = "0.137.0", path = "../swc_ecma_utils" }
7070
swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }

crates/swc_ecma_transforms/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_as
3737
swc_ecma_transforms_base = { version = "0.149.0", path = "../swc_ecma_transforms_base" }
3838
swc_ecma_transforms_compat = { version = "0.175.0", path = "../swc_ecma_transforms_compat", optional = true }
3939
swc_ecma_transforms_module = { version = "0.194.0", path = "../swc_ecma_transforms_module", optional = true }
40-
swc_ecma_transforms_optimization = { version = "0.212.0", path = "../swc_ecma_transforms_optimization", optional = true }
40+
swc_ecma_transforms_optimization = { version = "0.212.1", path = "../swc_ecma_transforms_optimization", optional = true }
4141
swc_ecma_transforms_proposal = { version = "0.183.0", path = "../swc_ecma_transforms_proposal", optional = true }
4242
swc_ecma_transforms_react = { version = "0.195.0", path = "../swc_ecma_transforms_react", optional = true }
4343
swc_ecma_transforms_typescript = { version = "0.202.0", path = "../swc_ecma_transforms_typescript", optional = true }

crates/swc_ecma_transforms_optimization/Cargo.toml

+1-1
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_optimization"
99
repository = "https://github.com/swc-project/swc.git"
10-
version = "0.212.0"
10+
version = "0.212.1"
1111
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1212

1313
[lib]

crates/swc_ecmascript/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
4040
[dependencies]
4141
swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
4242
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen", optional = true }
43-
swc_ecma_minifier = { version = "0.208.0", path = "../swc_ecma_minifier", optional = true }
43+
swc_ecma_minifier = { version = "0.208.1", path = "../swc_ecma_minifier", optional = true }
4444
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser", optional = true, default-features = false }
4545
swc_ecma_preset_env = { version = "0.221.0", path = "../swc_ecma_preset_env", optional = true }
4646
swc_ecma_quote = { version = "0.68.0", path = "../swc_ecma_quote", optional = true }

crates/swc_estree_compat/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ codspeed-criterion-compat = { workspace = true }
4141
criterion = { workspace = true }
4242
pretty_assertions = { workspace = true }
4343

44-
swc = { version = "0.289.0", path = "../swc" }
44+
swc = { version = "0.289.1", path = "../swc" }
4545
swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
4646
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
4747
swc_ecma_transforms = { version = "0.243.0", path = "../swc_ecma_transforms/" }

crates/swc_html_minifier/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
3636
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen", features = [
3737
"serde-impl",
3838
] }
39-
swc_ecma_minifier = { version = "0.208.0", path = "../swc_ecma_minifier", features = [
39+
swc_ecma_minifier = { version = "0.208.1", path = "../swc_ecma_minifier", features = [
4040
"extra-serde",
4141
] }
4242
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }

crates/swc_node_bundler/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ serde_json = { workspace = true }
2929
tracing = { workspace = true }
3030

3131
string_enum = { version = "0.4.4", path = "../string_enum" }
32-
swc = { version = "0.289.0", path = "../swc" }
32+
swc = { version = "0.289.1", path = "../swc" }
3333
swc_atoms = { version = "1.0.0", path = "../swc_atoms" }
3434
swc_bundler = { version = "0.241.0", path = "../swc_bundler", features = [
3535
"concurrent",

0 commit comments

Comments
 (0)