Skip to content

Commit 70a3734

Browse files
committed
chore: Publish crates with swc_core v43.0.1
1 parent fa3aacc commit 70a3734

File tree

40 files changed

+56
-61
lines changed

40 files changed

+56
-61
lines changed

.changeset/curly-bananas-protect.md

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

CHANGELOG-CORE.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Changelog
2+
## [unreleased]
3+
4+
### Features
5+
6+
7+
8+
- **(bindings)** Introduce AST Viewer to improve debugging experience ([#10963](https://github.com/swc-project/swc/issues/10963)) ([fa3aacc](https://github.com/swc-project/swc/commit/fa3aacc8425af7075d5af8596c0347de08d3f816))
9+
210
## [[email protected]] - 2025-09-26
311

412
### Bug Fixes
@@ -2530,17 +2538,11 @@
25302538

25312539

25322540

2533-
- **(es/minifier)** Skip inlining if the referential identity of a function matters ([#10123](https://github.com/swc-project/swc/issues/10123)) ([c08fe8d](https://github.com/swc-project/swc/commit/c08fe8dc13ae512cf669eb25356edcd22cc36351))
2534-
2535-
25362541
- **(es/minifier)** Fix regression due to #10056 ([#10134](https://github.com/swc-project/swc/issues/10134)) ([b145275](https://github.com/swc-project/swc/commit/b1452757f3ff0b05330578b4e7607db3ee874bd5))
25372542

25382543

25392544
- **(es/typescript)** Remove empty statements that const enum decls are folded into ([#10128](https://github.com/swc-project/swc/issues/10128)) ([7bea830](https://github.com/swc-project/swc/commit/7bea830a0e6f73ab0ba5032d13d5e58e4674bc72))
25402545

2541-
2542-
- **(ts/fast-strip)** Throw object consistently ([#10122](https://github.com/swc-project/swc/issues/10122)) ([010ff2a](https://github.com/swc-project/swc/commit/010ff2af0db625f7a118b4121aff6d709ed10dc9))
2543-
25442546
### Miscellaneous Tasks
25452547

25462548

CHANGELOG.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Changelog
2+
## [unreleased]
3+
4+
### Features
5+
6+
7+
8+
- **(bindings)** Introduce AST Viewer to improve debugging experience ([#10963](https://github.com/swc-project/swc/issues/10963)) ([fa3aacc](https://github.com/swc-project/swc/commit/fa3aacc8425af7075d5af8596c0347de08d3f816))
9+
210
## [1.13.20] - 2025-09-27
311

412
### Bug Fixes
@@ -2033,15 +2041,6 @@
20332041

20342042
## [1.11.5] - 2025-02-28
20352043

2036-
### Bug Fixes
2037-
2038-
2039-
2040-
- **(es/minifier)** Skip inlining if the referential identity of a function matters ([#10123](https://github.com/swc-project/swc/issues/10123)) ([c08fe8d](https://github.com/swc-project/swc/commit/c08fe8dc13ae512cf669eb25356edcd22cc36351))
2041-
2042-
2043-
- **(ts/fast-strip)** Throw object consistently ([#10122](https://github.com/swc-project/swc/issues/10122)) ([010ff2a](https://github.com/swc-project/swc/commit/010ff2af0db625f7a118b4121aff6d709ed10dc9))
2044-
20452044
### Miscellaneous Tasks
20462045

20472046

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
@@ -34,7 +34,7 @@ swc_ecma_codegen = { version = "17.0.2", path = "../swc_ecma_codegen" }
3434
swc_ecma_minifier = { version = "33.0.0", path = "../swc_ecma_minifier", features = [
3535
"concurrent",
3636
] }
37-
swc_ecma_parser = { version = "24.0.1", path = "../swc_ecma_parser" }
37+
swc_ecma_parser = { version = "24.0.2", path = "../swc_ecma_parser" }
3838
swc_ecma_transforms_base = { version = "27.0.0", path = "../swc_ecma_transforms_base" }
3939
swc_ecma_visit = { version = "15.0.0", path = "../swc_ecma_visit" }
4040
swc_error_reporters = { version = "16.0.1", path = "../swc_error_reporters" }

crates/jsdoc/Cargo.toml

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

2525
[dev-dependencies]
2626
dashmap = { workspace = true }
27-
swc_ecma_parser = { version = "24.0.1", path = "../swc_ecma_parser" }
27+
swc_ecma_parser = { version = "24.0.2", path = "../swc_ecma_parser" }
2828
testing = { version = "15.0.0", path = "../testing" }

crates/swc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ swc_ecma_loader = { version = "14.0.0", path = "../swc_ecma_loader", features =
9494
"tsc",
9595
] }
9696
swc_ecma_minifier = { version = "33.0.0", path = "../swc_ecma_minifier" }
97-
swc_ecma_parser = { version = "24.0.1", path = "../swc_ecma_parser", default-features = false, features = ["typescript"] }
97+
swc_ecma_parser = { version = "24.0.2", path = "../swc_ecma_parser", default-features = false, features = ["typescript"] }
9898
swc_ecma_preset_env = { version = "35.0.0", path = "../swc_ecma_preset_env" }
9999
swc_ecma_transforms = { version = "34.0.0", path = "../swc_ecma_transforms", features = [
100100
"compat",

crates/swc_bundler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ swc_common = { version = "14.0.4", path = "../swc_common"
4242
swc_ecma_ast = { version = "15.0.0", path = "../swc_ecma_ast" }
4343
swc_ecma_codegen = { version = "17.0.2", path = "../swc_ecma_codegen" }
4444
swc_ecma_loader = { version = "14.0.0", path = "../swc_ecma_loader" }
45-
swc_ecma_parser = { version = "24.0.1", path = "../swc_ecma_parser", default-features = false, features = ["typescript"] }
45+
swc_ecma_parser = { version = "24.0.2", path = "../swc_ecma_parser", default-features = false, features = ["typescript"] }
4646
swc_ecma_transforms_base = { version = "27.0.0", path = "../swc_ecma_transforms_base" }
4747
swc_ecma_transforms_optimization = { version = "29.0.0", path = "../swc_ecma_transforms_optimization" }
4848
swc_ecma_utils = { version = "21.0.0", path = "../swc_ecma_utils" }

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 = "43.0.0", features = [
41+
swc_core = { version = "43.0.1", 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
@@ -31,7 +31,7 @@ swc_config = { version = "3.1.2", path = "../swc_config" }
3131
swc_ecma_ast = { version = "15.0.0", path = "../swc_ecma_ast" }
3232
swc_ecma_codegen = { version = "17.0.2", path = "../swc_ecma_codegen" }
3333
swc_ecma_minifier = { version = "33.0.0", path = "../swc_ecma_minifier" }
34-
swc_ecma_parser = { version = "24.0.1", path = "../swc_ecma_parser", default-features = false, features = ["typescript"] }
34+
swc_ecma_parser = { version = "24.0.2", path = "../swc_ecma_parser", default-features = false, features = ["typescript"] }
3535
swc_ecma_visit = { version = "15.0.0", path = "../swc_ecma_visit" }
3636
swc_timer = { version = "1.0.0", path = "../swc_timer" }
3737

0 commit comments

Comments
 (0)