Skip to content

Commit 160043a

Browse files
committed
chore: Bump crates
1 parent d6a4615 commit 160043a

File tree

24 files changed

+108
-105
lines changed

24 files changed

+108
-105
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010

1111
- **(es/decorator)** Preserve state while traversing the `module_items` scope ([#8556](https://github.com/swc-project/swc/issues/8556)) ([f416aff](https://github.com/swc-project/swc/commit/f416aff7d7036de72509132603d9b423a0b95f68))
1212

13+
14+
- **(es/loader)** Make `tsc` resolver work for bare specifier ([#8550](https://github.com/swc-project/swc/issues/8550)) ([d6a4615](https://github.com/swc-project/swc/commit/d6a46158987d0e96d6184d41c2fdd73df92d6681))
15+
1316
## [1.3.106] - 2024-01-25
1417

1518
### Bug Fixes

Cargo.lock

Lines changed: 22 additions & 22 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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
license = "Apache-2.0"
66
name = "binding_macros"
77
repository = "https://github.com/swc-project/swc.git"
8-
version = "0.63.2"
8+
version = "0.63.3"
99

1010
[lib]
1111
bench = false
@@ -33,10 +33,10 @@ binding_wasm = [
3333

3434
[dependencies]
3535
# Common deps for the SWC imports
36-
swc = { optional = true, version = "0.272.2", path = "../swc" }
36+
swc = { optional = true, version = "0.272.3", path = "../swc" }
3737
swc_common = { optional = true, version = "0.33.15", path = "../swc_common" }
3838
swc_ecma_ast = { optional = true, version = "0.111.1", path = "../swc_ecma_ast" }
39-
swc_ecma_transforms = { optional = true, version = "0.228.3", path = "../swc_ecma_transforms" }
39+
swc_ecma_transforms = { optional = true, version = "0.228.4", path = "../swc_ecma_transforms" }
4040
swc_ecma_visit = { optional = true, version = "0.97.1", path = "../swc_ecma_visit" }
4141

4242
# Optional deps for the wasm binding macro

crates/dbg-swc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
license = "Apache-2.0"
66
name = "dbg-swc"
77
repository = "https://github.com/kdy1/dbg-swc.git"
8-
version = "0.90.39"
8+
version = "0.90.40"
99

1010
[[bin]]
1111
bench = false
@@ -32,7 +32,7 @@ swc_common = { version = "0.33.15", features = [
3232
], path = "../swc_common" }
3333
swc_ecma_ast = { version = "0.111.1", path = "../swc_ecma_ast" }
3434
swc_ecma_codegen = { version = "0.147.1", path = "../swc_ecma_codegen" }
35-
swc_ecma_minifier = { version = "0.191.3", path = "../swc_ecma_minifier", features = [
35+
swc_ecma_minifier = { version = "0.191.4", path = "../swc_ecma_minifier", features = [
3636
"concurrent",
3737
] }
3838
swc_ecma_parser = { version = "0.142.1", path = "../swc_ecma_parser" }

crates/swc/Cargo.toml

Lines changed: 8 additions & 8 deletions
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.272.2"
12+
version = "0.272.3"
1313

1414
[lib]
1515
bench = false
@@ -73,21 +73,21 @@ swc_common = { version = "0.33.15", path = "../swc_common", features = [
7373
"sourcemap",
7474
"parking_lot",
7575
] }
76-
swc_compiler_base = { version = "0.6.1", path = "../swc_compiler_base" }
76+
swc_compiler_base = { version = "0.6.2", path = "../swc_compiler_base" }
7777
swc_config = { version = "0.1.10", path = "../swc_config" }
7878
swc_ecma_ast = { version = "0.111.1", path = "../swc_ecma_ast" }
7979
swc_ecma_codegen = { version = "0.147.1", path = "../swc_ecma_codegen" }
8080
swc_ecma_ext_transforms = { version = "0.112.1", path = "../swc_ecma_ext_transforms" }
8181
swc_ecma_lints = { version = "0.91.1", path = "../swc_ecma_lints" }
82-
swc_ecma_loader = { version = "0.45.16", path = "../swc_ecma_loader", features = [
82+
swc_ecma_loader = { version = "0.45.17", path = "../swc_ecma_loader", features = [
8383
"cache",
8484
"node",
8585
"tsc",
8686
] }
87-
swc_ecma_minifier = { version = "0.191.3", path = "../swc_ecma_minifier" }
87+
swc_ecma_minifier = { version = "0.191.4", path = "../swc_ecma_minifier" }
8888
swc_ecma_parser = { version = "0.142.1", path = "../swc_ecma_parser" }
89-
swc_ecma_preset_env = { version = "0.205.3", path = "../swc_ecma_preset_env" }
90-
swc_ecma_transforms = { version = "0.228.3", path = "../swc_ecma_transforms", features = [
89+
swc_ecma_preset_env = { version = "0.205.4", path = "../swc_ecma_preset_env" }
90+
swc_ecma_transforms = { version = "0.228.4", path = "../swc_ecma_transforms", features = [
9191
"compat",
9292
"module",
9393
"optimization",
@@ -97,13 +97,13 @@ swc_ecma_transforms = { version = "0.228.3", path = "../swc_ecma_transforms", fe
9797
] }
9898
swc_ecma_transforms_base = { version = "0.136.1", path = "../swc_ecma_transforms_base" }
9999
swc_ecma_transforms_compat = { version = "0.162.1", path = "../swc_ecma_transforms_compat" }
100-
swc_ecma_transforms_optimization = { version = "0.197.3", path = "../swc_ecma_transforms_optimization" }
100+
swc_ecma_transforms_optimization = { version = "0.197.4", path = "../swc_ecma_transforms_optimization" }
101101
swc_ecma_utils = { version = "0.126.1", path = "../swc_ecma_utils" }
102102
swc_ecma_visit = { version = "0.97.1", path = "../swc_ecma_visit" }
103103
swc_error_reporters = { version = "0.17.14", path = "../swc_error_reporters" }
104104
swc_node_comments = { version = "0.20.14", path = "../swc_node_comments" }
105105
swc_plugin_proxy = { version = "0.40.1", path = "../swc_plugin_proxy", optional = true }
106-
swc_plugin_runner = { version = "0.105.2", path = "../swc_plugin_runner", optional = true, default-features = false }
106+
swc_plugin_runner = { version = "0.105.3", path = "../swc_plugin_runner", optional = true, default-features = false }
107107
swc_timer = { version = "0.21.16", path = "../swc_timer" }
108108
swc_visit = { version = "0.5.8", path = "../swc_visit" }
109109

crates/swc_bundler/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ include = ["Cargo.toml", "build.rs", "src/**/*.rs", "src/**/*.js"]
99
license = "Apache-2.0"
1010
name = "swc_bundler"
1111
repository = "https://github.com/swc-project/swc.git"
12-
version = "0.224.3"
12+
version = "0.224.4"
1313

1414
[package.metadata.docs.rs]
1515
all-features = true
@@ -41,10 +41,10 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
4141
swc_common = { version = "0.33.15", path = "../swc_common" }
4242
swc_ecma_ast = { version = "0.111.1", path = "../swc_ecma_ast" }
4343
swc_ecma_codegen = { version = "0.147.1", path = "../swc_ecma_codegen" }
44-
swc_ecma_loader = { version = "0.45.16", path = "../swc_ecma_loader" }
44+
swc_ecma_loader = { version = "0.45.17", path = "../swc_ecma_loader" }
4545
swc_ecma_parser = { version = "0.142.1", path = "../swc_ecma_parser" }
4646
swc_ecma_transforms_base = { version = "0.136.1", path = "../swc_ecma_transforms_base" }
47-
swc_ecma_transforms_optimization = { version = "0.197.3", path = "../swc_ecma_transforms_optimization" }
47+
swc_ecma_transforms_optimization = { version = "0.197.4", path = "../swc_ecma_transforms_optimization" }
4848
swc_ecma_utils = { version = "0.126.1", path = "../swc_ecma_utils" }
4949
swc_ecma_visit = { version = "0.97.1", path = "../swc_ecma_visit" }
5050
swc_fast_graph = { version = "0.21.15", path = "../swc_fast_graph/" }
@@ -59,15 +59,15 @@ sha-1 = "0.10"
5959
tempfile = "3.6.0"
6060
url = "2.4.0"
6161

62-
swc_ecma_loader = { version = "0.45.16", path = "../swc_ecma_loader", features = [
62+
swc_ecma_loader = { version = "0.45.17", path = "../swc_ecma_loader", features = [
6363
"node",
6464
"cache",
6565
] }
66-
swc_ecma_minifier = { version = "0.191.3", path = "../swc_ecma_minifier", features = [
66+
swc_ecma_minifier = { version = "0.191.4", path = "../swc_ecma_minifier", features = [
6767
"concurrent",
6868
] }
69-
swc_ecma_transforms_proposal = { version = "0.170.3", path = "../swc_ecma_transforms_proposal" }
70-
swc_ecma_transforms_react = { version = "0.182.2", path = "../swc_ecma_transforms_react" }
71-
swc_ecma_transforms_typescript = { version = "0.187.3", path = "../swc_ecma_transforms_typescript" }
69+
swc_ecma_transforms_proposal = { version = "0.170.4", path = "../swc_ecma_transforms_proposal" }
70+
swc_ecma_transforms_react = { version = "0.182.3", path = "../swc_ecma_transforms_react" }
71+
swc_ecma_transforms_typescript = { version = "0.187.4", path = "../swc_ecma_transforms_typescript" }
7272
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
7373
testing = { version = "0.35.16", path = "../testing" }

crates/swc_cli_impl/Cargo.toml

Lines changed: 2 additions & 2 deletions
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_cli_impl"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.7.2"
9+
version = "0.7.3"
1010

1111
[[bin]]
1212
name = "swc"
@@ -40,7 +40,7 @@ tracing-futures = "0.2.5"
4040
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
4141
walkdir = "2"
4242

43-
swc_core = { version = "0.89.2", features = [
43+
swc_core = { version = "0.89.3", features = [
4444
"trace_macro",
4545
"common_concurrent",
4646
"base_concurrent",

crates/swc_compiler_base/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 = "Apache-2.0"
88
name = "swc_compiler_base"
99
repository = "https://github.com/swc-project/swc.git"
10-
version = "0.6.1"
10+
version = "0.6.2"
1111

1212
[features]
1313
node = ["napi", "napi-derive"]
@@ -27,7 +27,7 @@ swc_common = { version = "0.33.15", path = "../swc_common", features = [
2727
swc_config = { version = "0.1.10", path = "../swc_config" }
2828
swc_ecma_ast = { version = "0.111.1", path = "../swc_ecma_ast" }
2929
swc_ecma_codegen = { version = "0.147.1", path = "../swc_ecma_codegen" }
30-
swc_ecma_minifier = { version = "0.191.3", path = "../swc_ecma_minifier" }
30+
swc_ecma_minifier = { version = "0.191.4", path = "../swc_ecma_minifier" }
3131
swc_ecma_parser = { version = "0.142.1", path = "../swc_ecma_parser" }
3232
swc_ecma_visit = { version = "0.97.1", path = "../swc_ecma_visit" }
3333
swc_timer = { version = "0.21.16", path = "../swc_timer" }

0 commit comments

Comments
 (0)