Skip to content

Commit 696d77d

Browse files
committed
chore: Publish crates with swc_core v10.2.4
1 parent 7251c93 commit 696d77d

File tree

50 files changed

+91
-91
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+91
-91
lines changed

Cargo.lock

Lines changed: 3 additions & 3 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ binding_wasm = [
3535
# Common deps for the SWC imports
3636
swc = { optional = true, version = "10.0.0", path = "../swc" }
3737
swc_common = { optional = true, version = "5.0.0", path = "../swc_common" }
38-
swc_ecma_ast = { optional = true, version = "5.0.1", path = "../swc_ecma_ast" }
38+
swc_ecma_ast = { optional = true, version = "5.0.2", path = "../swc_ecma_ast" }
3939
swc_ecma_transforms = { optional = true, version = "9.0.0", path = "../swc_ecma_transforms" }
4040
swc_ecma_visit = { optional = true, version = "5.0.0", path = "../swc_ecma_visit" }
4141

crates/dbg-swc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ swc_common = { version = "5.0.0", features = [
3131
"concurrent",
3232
"tty-emitter",
3333
], path = "../swc_common" }
34-
swc_ecma_ast = { version = "5.0.1", path = "../swc_ecma_ast" }
34+
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
3535
swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" }
3636
swc_ecma_minifier = { version = "7.1.0", path = "../swc_ecma_minifier", features = [
3737
"concurrent",

crates/jsdoc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ swc_common = { version = "5.0.0", path = "../swc_common" }
2626
anyhow = { workspace = true }
2727
dashmap = { workspace = true }
2828

29-
swc_ecma_ast = { version = "5.0.1", path = "../swc_ecma_ast" }
29+
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
3030
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
3131
testing = { version = "5.0.0", path = "../testing" }

crates/swc/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ swc_common = { version = "5.0.0", path = "../swc_common", features = [
7979
] }
8080
swc_compiler_base = { version = "8.0.0", path = "../swc_compiler_base" }
8181
swc_config = { version = "1.0.0", path = "../swc_config" }
82-
swc_ecma_ast = { version = "5.0.1", path = "../swc_ecma_ast" }
82+
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
8383
swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" }
8484
swc_ecma_ext_transforms = { version = "7.0.0", path = "../swc_ecma_ext_transforms" }
8585
swc_ecma_lints = { version = "7.0.0", path = "../swc_ecma_lints" }
@@ -102,7 +102,7 @@ swc_ecma_transforms = { version = "9.0.0", path = "../swc_ecma_transforms", feat
102102
swc_ecma_transforms_base = { version = "7.1.0", path = "../swc_ecma_transforms_base" }
103103
swc_ecma_transforms_compat = { version = "8.0.0", path = "../swc_ecma_transforms_compat" }
104104
swc_ecma_transforms_optimization = { version = "7.1.0", path = "../swc_ecma_transforms_optimization" }
105-
swc_ecma_utils = { version = "7.0.1", path = "../swc_ecma_utils" }
105+
swc_ecma_utils = { version = "7.0.2", path = "../swc_ecma_utils" }
106106
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
107107
swc_error_reporters = { version = "6.0.0", path = "../swc_error_reporters" }
108108
swc_node_comments = { version = "5.0.0", path = "../swc_node_comments" }
@@ -136,7 +136,7 @@ rayon = { workspace = true }
136136
walkdir = { workspace = true }
137137

138138
codspeed-criterion-compat = { workspace = true }
139-
swc_ecma_ast = { version = "5.0.1", path = "../swc_ecma_ast", features = [
139+
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast", features = [
140140
"serde-impl",
141141
] }
142142
swc_ecma_lints = { version = "7.0.0", path = "../swc_ecma_lints", features = [

crates/swc_bundler/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ tracing = { workspace = true }
3939

4040
swc_atoms = { version = "3.0.3", path = "../swc_atoms" }
4141
swc_common = { version = "5.0.0", path = "../swc_common" }
42-
swc_ecma_ast = { version = "5.0.1", path = "../swc_ecma_ast" }
42+
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
4343
swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" }
4444
swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader" }
4545
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
4646
swc_ecma_transforms_base = { version = "7.1.0", path = "../swc_ecma_transforms_base" }
4747
swc_ecma_transforms_optimization = { version = "7.1.0", path = "../swc_ecma_transforms_optimization" }
48-
swc_ecma_utils = { version = "7.0.1", path = "../swc_ecma_utils" }
48+
swc_ecma_utils = { version = "7.0.2", path = "../swc_ecma_utils" }
4949
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
5050
swc_fast_graph = { version = "6.0.0", path = "../swc_fast_graph/" }
5151
swc_graph_analyzer = { version = "5.0.0", path = "../swc_graph_analyzer/" }

crates/swc_cli_impl/Cargo.toml

Lines changed: 1 addition & 1 deletion
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 = "10.2.3", features = [
42+
swc_core = { version = "10.2.4", features = [
4343
"trace_macro",
4444
"common_concurrent",
4545
"base_concurrent",

crates/swc_compiler_base/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ swc_common = { version = "5.0.0", path = "../swc_common", features = [
2828
"sourcemap",
2929
] }
3030
swc_config = { version = "1.0.0", path = "../swc_config" }
31-
swc_ecma_ast = { version = "5.0.1", path = "../swc_ecma_ast" }
31+
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
3232
swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" }
3333
swc_ecma_minifier = { version = "7.1.0", path = "../swc_ecma_minifier" }
3434
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }

crates/swc_core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = { workspace = true }
66
license = { workspace = true }
77
name = "swc_core"
88
repository = { workspace = true }
9-
version = "10.2.3"
9+
version = "10.2.4"
1010
[package.metadata.docs.rs]
1111
features = [
1212
"allocator_node",
@@ -353,7 +353,7 @@ swc_css_parser = { optional = true, version = "5.0.0", path =
353353
swc_css_prefixer = { optional = true, version = "5.0.0", path = "../swc_css_prefixer" }
354354
swc_css_utils = { optional = true, version = "5.0.0", path = "../swc_css_utils/" }
355355
swc_css_visit = { optional = true, version = "5.0.0", path = "../swc_css_visit" }
356-
swc_ecma_ast = { optional = true, version = "5.0.1", path = "../swc_ecma_ast" }
356+
swc_ecma_ast = { optional = true, version = "5.0.2", path = "../swc_ecma_ast" }
357357
swc_ecma_codegen = { optional = true, version = "5.0.1", path = "../swc_ecma_codegen" }
358358
swc_ecma_lints = { optional = true, version = "7.0.0", path = "../swc_ecma_lints" }
359359
swc_ecma_loader = { optional = true, version = "5.0.0", path = "../swc_ecma_loader" }
@@ -370,7 +370,7 @@ swc_ecma_transforms_react = { optional = true, version = "7.0.0", path =
370370
swc_ecma_transforms_testing = { optional = true, version = "7.0.1", path = "../swc_ecma_transforms_testing" }
371371
swc_ecma_transforms_typescript = { optional = true, version = "7.0.0", path = "../swc_ecma_transforms_typescript" }
372372
swc_ecma_usage_analyzer = { optional = true, version = "7.0.0", path = "../swc_ecma_usage_analyzer" }
373-
swc_ecma_utils = { optional = true, version = "7.0.1", path = "../swc_ecma_utils" }
373+
swc_ecma_utils = { optional = true, version = "7.0.2", path = "../swc_ecma_utils" }
374374
swc_ecma_visit = { optional = true, version = "5.0.0", path = "../swc_ecma_visit" }
375375
swc_malloc = { optional = true, version = "1.0.0", path = "../swc_malloc" }
376376
swc_node_bundler = { optional = true, version = "10.0.0", path = "../swc_node_bundler" }

crates/swc_ecma_ast/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = { workspace = true }
66
license = { workspace = true }
77
name = "swc_ecma_ast"
88
repository = { workspace = true }
9-
version = "5.0.1"
9+
version = "5.0.2"
1010

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

0 commit comments

Comments
 (0)