Skip to content

Commit cee5548

Browse files
committed
chore: Publish crates with swc_core v47.0.9
1 parent 0998c93 commit cee5548

File tree

40 files changed

+60
-67
lines changed

40 files changed

+60
-67
lines changed

.changeset/few-bees-crash.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

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/dbg-swc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ swc_common = { version = "17.0.1", features = [
2727
"tty-emitter",
2828
], path = "../swc_common" }
2929
swc_ecma_ast = { version = "18.0.0", path = "../swc_ecma_ast" }
30-
swc_ecma_codegen = { version = "20.0.0", path = "../swc_ecma_codegen" }
30+
swc_ecma_codegen = { version = "20.0.1", path = "../swc_ecma_codegen" }
3131
swc_ecma_minifier = { version = "36.0.3", path = "../swc_ecma_minifier", features = [
3232
"concurrent",
3333
] }
34-
swc_ecma_parser = { version = "27.0.5", path = "../swc_ecma_parser" }
34+
swc_ecma_parser = { version = "27.0.6", path = "../swc_ecma_parser" }
3535
swc_ecma_transforms_base = { version = "30.0.0", path = "../swc_ecma_transforms_base" }
3636
swc_ecma_visit = { version = "18.0.1", path = "../swc_ecma_visit" }
3737
swc_error_reporters = { version = "19.0.0", path = "../swc_error_reporters" }

crates/jsdoc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ swc_common = { version = "17.0.1", path = "../swc_common" }
3030

3131
[dev-dependencies]
3232
dashmap = { workspace = true }
33-
swc_ecma_parser = { version = "27.0.5", path = "../swc_ecma_parser" }
33+
swc_ecma_parser = { version = "27.0.6", path = "../swc_ecma_parser" }
3434
testing = { version = "18.0.0", path = "../testing" }

crates/swc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ swc_common = { version = "17.0.1", path = "../swc_common", features = [
8787
swc_compiler_base = { version = "39.0.0", path = "../swc_compiler_base" }
8888
swc_config = { version = "3.1.2", path = "../swc_config" }
8989
swc_ecma_ast = { version = "18.0.0", path = "../swc_ecma_ast" }
90-
swc_ecma_codegen = { version = "20.0.0", path = "../swc_ecma_codegen" }
90+
swc_ecma_codegen = { version = "20.0.1", path = "../swc_ecma_codegen" }
9191
swc_ecma_ext_transforms = { version = "24.0.0", path = "../swc_ecma_ext_transforms" }
9292
swc_ecma_lints = { version = "25.0.0", path = "../swc_ecma_lints", optional = true }
9393
swc_ecma_loader = { version = "17.0.0", path = "../swc_ecma_loader", features = [
@@ -96,7 +96,7 @@ swc_ecma_loader = { version = "17.0.0", path = "../swc_ecma_loader", features =
9696
"tsc",
9797
] }
9898
swc_ecma_minifier = { version = "36.0.3", path = "../swc_ecma_minifier" }
99-
swc_ecma_parser = { version = "27.0.5", path = "../swc_ecma_parser", default-features = false, features = [
99+
swc_ecma_parser = { version = "27.0.6", path = "../swc_ecma_parser", default-features = false, features = [
100100
"typescript",
101101
] }
102102
swc_ecma_preset_env = { version = "39.0.0", path = "../swc_ecma_preset_env" }

crates/swc_bundler/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ tracing = { workspace = true }
4343
swc_atoms = { version = "9.0.0", path = "../swc_atoms" }
4444
swc_common = { version = "17.0.1", path = "../swc_common" }
4545
swc_ecma_ast = { version = "18.0.0", path = "../swc_ecma_ast" }
46-
swc_ecma_codegen = { version = "20.0.0", path = "../swc_ecma_codegen" }
46+
swc_ecma_codegen = { version = "20.0.1", path = "../swc_ecma_codegen" }
4747
swc_ecma_loader = { version = "17.0.0", path = "../swc_ecma_loader" }
48-
swc_ecma_parser = { version = "27.0.5", path = "../swc_ecma_parser", default-features = false, features = [
48+
swc_ecma_parser = { version = "27.0.6", path = "../swc_ecma_parser", default-features = false, features = [
4949
"typescript",
5050
] }
5151
swc_ecma_transforms_base = { version = "30.0.0", path = "../swc_ecma_transforms_base" }

crates/swc_cli_impl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ tracing-chrome = { workspace = true }
3838
tracing-subscriber = { workspace = true, features = ["env-filter"] }
3939
walkdir = { workspace = true }
4040

41-
swc_core = { version = "47.0.8", features = [
41+
swc_core = { version = "47.0.9", features = [
4242
"trace_macro",
4343
"common_concurrent",
4444
"base_concurrent",

crates/swc_compiler_base/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ swc_common = { version = "17.0.1", path = "../swc_common", features = [
2929
] }
3030
swc_config = { version = "3.1.2", path = "../swc_config" }
3131
swc_ecma_ast = { version = "18.0.0", path = "../swc_ecma_ast" }
32-
swc_ecma_codegen = { version = "20.0.0", path = "../swc_ecma_codegen" }
32+
swc_ecma_codegen = { version = "20.0.1", path = "../swc_ecma_codegen" }
3333
swc_ecma_minifier = { version = "36.0.3", path = "../swc_ecma_minifier" }
34-
swc_ecma_parser = { version = "27.0.5", path = "../swc_ecma_parser", default-features = false, features = [
34+
swc_ecma_parser = { version = "27.0.6", path = "../swc_ecma_parser", default-features = false, features = [
3535
"typescript",
3636
] }
3737
swc_ecma_visit = { version = "18.0.1", path = "../swc_ecma_visit" }

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 = "47.0.8"
9+
version = "47.0.9"
1010
[package.metadata.docs.rs]
1111
features = [
1212
"allocator_node",
@@ -349,11 +349,11 @@ swc_css_prefixer = { optional = true, version = "20.0.0", path =
349349
swc_css_utils = { optional = true, version = "17.0.0", path = "../swc_css_utils/" }
350350
swc_css_visit = { optional = true, version = "17.0.1", path = "../swc_css_visit" }
351351
swc_ecma_ast = { optional = true, version = "18.0.0", path = "../swc_ecma_ast" }
352-
swc_ecma_codegen = { optional = true, version = "20.0.0", path = "../swc_ecma_codegen" }
352+
swc_ecma_codegen = { optional = true, version = "20.0.1", path = "../swc_ecma_codegen" }
353353
swc_ecma_lints = { optional = true, version = "25.0.0", path = "../swc_ecma_lints" }
354354
swc_ecma_loader = { optional = true, version = "17.0.0", path = "../swc_ecma_loader" }
355355
swc_ecma_minifier = { optional = true, version = "36.0.3", path = "../swc_ecma_minifier" }
356-
swc_ecma_parser = { optional = true, version = "27.0.5", path = "../swc_ecma_parser", default-features = false }
356+
swc_ecma_parser = { optional = true, version = "27.0.6", path = "../swc_ecma_parser", default-features = false }
357357
swc_ecma_preset_env = { optional = true, version = "39.0.0", path = "../swc_ecma_preset_env" }
358358
swc_ecma_quote_macros = { optional = true, version = "27.0.1", path = "../swc_ecma_quote_macros" }
359359
swc_ecma_react_compiler = { optional = true, version = "11.0.0", path = "../swc_ecma_react_compiler" }

crates/swc_ecma_codegen/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 = { workspace = true }
88
name = "swc_ecma_codegen"
99
repository = { workspace = true }
10-
version = "20.0.0"
10+
version = "20.0.1"
1111

1212
[features]
1313
# This does not enable serde for ast nodes.
@@ -49,7 +49,7 @@ swc_allocator = { version = "4.0.1", path = "../swc_allocator" }
4949
swc_common = { version = "17.0.1", path = "../swc_common", features = [
5050
"sourcemap",
5151
] }
52-
swc_ecma_parser = { version = "27.0.5", path = "../swc_ecma_parser" }
52+
swc_ecma_parser = { version = "27.0.6", path = "../swc_ecma_parser" }
5353
swc_ecma_testing = { version = "18.0.0", path = "../swc_ecma_testing" }
5454
swc_malloc = { version = "1.2.4", path = "../swc_malloc" }
5555
testing = { version = "18.0.0", path = "../testing" }

0 commit comments

Comments
 (0)