Skip to content

Commit cfd92b1

Browse files
committed
chore: Publish crates with swc_core v48.0.2
1 parent 88c6ac7 commit cfd92b1

File tree

11 files changed

+12
-18
lines changed

11 files changed

+12
-18
lines changed

.changeset/stupid-worms-boil.md

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

Cargo.lock

Lines changed: 2 additions & 2 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ swc_common = { version = "17.0.1", features = [
2828
], path = "../swc_common" }
2929
swc_ecma_ast = { version = "18.0.0", path = "../swc_ecma_ast" }
3030
swc_ecma_codegen = { version = "20.0.2", path = "../swc_ecma_codegen" }
31-
swc_ecma_minifier = { version = "36.0.3", path = "../swc_ecma_minifier", features = [
31+
swc_ecma_minifier = { version = "36.0.4", path = "../swc_ecma_minifier", features = [
3232
"concurrent",
3333
] }
3434
swc_ecma_parser = { version = "27.0.6", path = "../swc_ecma_parser" }

crates/swc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ swc_ecma_loader = { version = "17.0.0", path = "../swc_ecma_loader", features =
9595
"node",
9696
"tsc",
9797
] }
98-
swc_ecma_minifier = { version = "36.0.3", path = "../swc_ecma_minifier" }
98+
swc_ecma_minifier = { version = "36.0.4", path = "../swc_ecma_minifier" }
9999
swc_ecma_parser = { version = "27.0.6", path = "../swc_ecma_parser", default-features = false, features = [
100100
"typescript",
101101
] }

crates/swc_bundler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ swc_ecma_loader = { version = "17.0.0", path = "../swc_ecma_loader", features =
6767
"node",
6868
"cache",
6969
] }
70-
swc_ecma_minifier = { version = "36.0.3", path = "../swc_ecma_minifier", features = [
70+
swc_ecma_minifier = { version = "36.0.4", path = "../swc_ecma_minifier", features = [
7171
"concurrent",
7272
] }
7373
swc_ecma_transforms_base = { version = "30.0.0", path = "../swc_ecma_transforms_base", features = [

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 = "48.0.1", features = [
41+
swc_core = { version = "48.0.2", features = [
4242
"trace_macro",
4343
"common_concurrent",
4444
"base_concurrent",

crates/swc_compiler_base/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ swc_common = { version = "17.0.1", path = "../swc_common", features = [
3030
swc_config = { version = "3.1.2", path = "../swc_config" }
3131
swc_ecma_ast = { version = "18.0.0", path = "../swc_ecma_ast" }
3232
swc_ecma_codegen = { version = "20.0.2", path = "../swc_ecma_codegen" }
33-
swc_ecma_minifier = { version = "36.0.3", path = "../swc_ecma_minifier" }
33+
swc_ecma_minifier = { version = "36.0.4", path = "../swc_ecma_minifier" }
3434
swc_ecma_parser = { version = "27.0.6", path = "../swc_ecma_parser", default-features = false, features = [
3535
"typescript",
3636
] }

crates/swc_core/Cargo.toml

Lines changed: 2 additions & 2 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 = "48.0.1"
9+
version = "48.0.2"
1010
[package.metadata.docs.rs]
1111
features = [
1212
"allocator_node",
@@ -352,7 +352,7 @@ swc_ecma_ast = { optional = true, version = "18.0.0", path =
352352
swc_ecma_codegen = { optional = true, version = "20.0.2", 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" }
355-
swc_ecma_minifier = { optional = true, version = "36.0.3", path = "../swc_ecma_minifier" }
355+
swc_ecma_minifier = { optional = true, version = "36.0.4", path = "../swc_ecma_minifier" }
356356
swc_ecma_parser = { optional = true, version = "27.0.6", path = "../swc_ecma_parser", default-features = false }
357357
swc_ecma_preset_env = { optional = true, version = "40.0.0", path = "../swc_ecma_preset_env" }
358358
swc_ecma_quote_macros = { optional = true, version = "27.0.1", path = "../swc_ecma_quote_macros" }

crates/swc_ecma_minifier/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", "src/lists/*.json"]
77
license = { workspace = true }
88
name = "swc_ecma_minifier"
99
repository = { workspace = true }
10-
version = "36.0.3"
10+
version = "36.0.4"
1111

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

crates/swc_ecmascript/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
4343
[dependencies]
4444
swc_ecma_ast = { version = "18.0.0", path = "../swc_ecma_ast" }
4545
swc_ecma_codegen = { version = "20.0.2", path = "../swc_ecma_codegen", optional = true }
46-
swc_ecma_minifier = { version = "36.0.3", path = "../swc_ecma_minifier", optional = true }
46+
swc_ecma_minifier = { version = "36.0.4", path = "../swc_ecma_minifier", optional = true }
4747
swc_ecma_parser = { version = "27.0.6", path = "../swc_ecma_parser", optional = true, default-features = false }
4848
swc_ecma_preset_env = { version = "40.0.0", path = "../swc_ecma_preset_env", optional = true }
4949
swc_ecma_quote = { version = "27.0.0", path = "../swc_ecma_quote", optional = true }

0 commit comments

Comments
 (0)