Skip to content

Commit 18af9c3

Browse files
committed
chore: Publish crates
1 parent 861d87c commit 18af9c3

File tree

25 files changed

+137
-129
lines changed

25 files changed

+137
-129
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Changelog
2+
## [unreleased]
3+
4+
### Bug Fixes
5+
6+
7+
8+
- **(es/resolver)** Resolve parameters correctly (#6890) ([861d87c](https://github.com/swc-project/swc/commit/861d87cae622f371ea697b1cb07ed79d32579b74))
9+
210
## [1.3.32] - 2023-02-01
311

412
### Bug Fixes

Cargo.lock

Lines changed: 23 additions & 23 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.34.11"
8+
version = "0.34.12"
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.245.11", path = "../swc" }
36+
swc = { optional = true, version = "0.245.12", path = "../swc" }
3737
swc_common = { optional = true, version = "0.29.29", path = "../swc_common" }
3838
swc_ecma_ast = { optional = true, version = "0.96.3", path = "../swc_ecma_ast" }
39-
swc_ecma_transforms = { optional = true, version = "0.203.9", path = "../swc_ecma_transforms" }
39+
swc_ecma_transforms = { optional = true, version = "0.203.10", path = "../swc_ecma_transforms" }
4040
swc_ecma_visit = { optional = true, version = "0.82.3", path = "../swc_ecma_visit" }
4141

4242
# Optional deps for the wasm binding macro

crates/dbg-swc/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 = "dbg-swc"
77
repository = "https://github.com/kdy1/dbg-swc.git"
8-
version = "0.66.20"
8+
version = "0.66.21"
99

1010
[[bin]]
1111
bench = false
@@ -27,11 +27,11 @@ swc_common = { version = "0.29.29", features = [
2727
], path = "../swc_common" }
2828
swc_ecma_ast = { version = "0.96.3", path = "../swc_ecma_ast" }
2929
swc_ecma_codegen = { version = "0.129.8", path = "../swc_ecma_codegen" }
30-
swc_ecma_minifier = { version = "0.166.10", path = "../swc_ecma_minifier", features = [
30+
swc_ecma_minifier = { version = "0.166.11", path = "../swc_ecma_minifier", features = [
3131
"concurrent",
3232
] }
3333
swc_ecma_parser = { version = "0.124.5", path = "../swc_ecma_parser" }
34-
swc_ecma_transforms_base = { version = "0.116.4", path = "../swc_ecma_transforms_base" }
34+
swc_ecma_transforms_base = { version = "0.116.5", path = "../swc_ecma_transforms_base" }
3535
swc_ecma_visit = { version = "0.82.3", path = "../swc_ecma_visit" }
3636
swc_error_reporters = { version = "0.13.30", path = "../swc_error_reporters" }
3737
swc_timer = { version = "0.17.31", path = "../swc_timer" }

crates/swc/Cargo.toml

Lines changed: 9 additions & 9 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.245.11"
12+
version = "0.245.12"
1313

1414
[lib]
1515
bench = false
@@ -73,26 +73,26 @@ swc_config = { version = "0.1.4", path = "../swc_config" }
7373
swc_ecma_ast = { version = "0.96.3", path = "../swc_ecma_ast" }
7474
swc_ecma_codegen = { version = "0.129.8", path = "../swc_ecma_codegen" }
7575
swc_ecma_ext_transforms = { version = "0.93.5", path = "../swc_ecma_ext_transforms" }
76-
swc_ecma_lints = { version = "0.71.4", path = "../swc_ecma_lints" }
76+
swc_ecma_lints = { version = "0.71.5", path = "../swc_ecma_lints" }
7777
swc_ecma_loader = { version = "0.41.31", path = "../swc_ecma_loader", features = [
7878
"cache",
7979
"node",
8080
"tsc",
8181
] }
82-
swc_ecma_minifier = { version = "0.166.10", path = "../swc_ecma_minifier" }
82+
swc_ecma_minifier = { version = "0.166.11", path = "../swc_ecma_minifier" }
8383
swc_ecma_parser = { version = "0.124.5", path = "../swc_ecma_parser" }
84-
swc_ecma_preset_env = { version = "0.180.10", path = "../swc_ecma_preset_env" }
85-
swc_ecma_transforms = { version = "0.203.9", path = "../swc_ecma_transforms", features = [
84+
swc_ecma_preset_env = { version = "0.180.11", path = "../swc_ecma_preset_env" }
85+
swc_ecma_transforms = { version = "0.203.10", path = "../swc_ecma_transforms", features = [
8686
"compat",
8787
"module",
8888
"optimization",
8989
"proposal",
9090
"react",
9191
"typescript",
9292
] }
93-
swc_ecma_transforms_base = { version = "0.116.4", path = "../swc_ecma_transforms_base" }
94-
swc_ecma_transforms_compat = { version = "0.141.6", path = "../swc_ecma_transforms_compat" }
95-
swc_ecma_transforms_optimization = { version = "0.172.9", path = "../swc_ecma_transforms_optimization" }
93+
swc_ecma_transforms_base = { version = "0.116.5", path = "../swc_ecma_transforms_base" }
94+
swc_ecma_transforms_compat = { version = "0.141.7", path = "../swc_ecma_transforms_compat" }
95+
swc_ecma_transforms_optimization = { version = "0.172.10", path = "../swc_ecma_transforms_optimization" }
9696
swc_ecma_utils = { version = "0.107.5", path = "../swc_ecma_utils" }
9797
swc_ecma_visit = { version = "0.82.3", path = "../swc_ecma_visit" }
9898
swc_error_reporters = { version = "0.13.30", path = "../swc_error_reporters" }
@@ -120,7 +120,7 @@ url = "2.3.1"
120120
ansi_term = "0.12"
121121
criterion = "0.3"
122122
rayon = "1.5.1"
123-
swc_ecma_lints = { version = "0.71.4", path = "../swc_ecma_lints", features = [
123+
swc_ecma_lints = { version = "0.71.5", path = "../swc_ecma_lints", features = [
124124
"non_critical_lints",
125125
] }
126126
swc_ecma_testing = { version = "0.20.7", path = "../swc_ecma_testing" }

crates/swc_bundler/Cargo.toml

Lines changed: 7 additions & 7 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.199.10"
12+
version = "0.199.11"
1313

1414
[package.metadata.docs.rs]
1515
all-features = true
@@ -42,8 +42,8 @@ swc_ecma_ast = {version = "0.96.3", path = "../swc_ecma_ast"}
4242
swc_ecma_codegen = {version = "0.129.8", path = "../swc_ecma_codegen"}
4343
swc_ecma_loader = {version = "0.41.31", path = "../swc_ecma_loader"}
4444
swc_ecma_parser = {version = "0.124.5", path = "../swc_ecma_parser"}
45-
swc_ecma_transforms_base = {version = "0.116.4", path = "../swc_ecma_transforms_base"}
46-
swc_ecma_transforms_optimization = {version = "0.172.9", path = "../swc_ecma_transforms_optimization"}
45+
swc_ecma_transforms_base = {version = "0.116.5", path = "../swc_ecma_transforms_base"}
46+
swc_ecma_transforms_optimization = {version = "0.172.10", path = "../swc_ecma_transforms_optimization"}
4747
swc_ecma_utils = {version = "0.107.5", path = "../swc_ecma_utils"}
4848
swc_ecma_visit = {version = "0.82.3", path = "../swc_ecma_visit"}
4949
swc_fast_graph = {version = "0.17.30", path = "../swc_fast_graph/"}
@@ -60,12 +60,12 @@ swc_ecma_loader = {version = "0.41.31", path = "../swc_ecma_loader", features =
6060
"node",
6161
"cache",
6262
]}
63-
swc_ecma_minifier = {version = "0.166.10", path = "../swc_ecma_minifier", features = [
63+
swc_ecma_minifier = {version = "0.166.11", path = "../swc_ecma_minifier", features = [
6464
"concurrent",
6565
]}
66-
swc_ecma_transforms_proposal = {version = "0.149.7", path = "../swc_ecma_transforms_proposal"}
67-
swc_ecma_transforms_react = {version = "0.160.8", path = "../swc_ecma_transforms_react"}
68-
swc_ecma_transforms_typescript = {version = "0.164.9", path = "../swc_ecma_transforms_typescript"}
66+
swc_ecma_transforms_proposal = {version = "0.149.8", path = "../swc_ecma_transforms_proposal"}
67+
swc_ecma_transforms_react = {version = "0.160.9", path = "../swc_ecma_transforms_react"}
68+
swc_ecma_transforms_typescript = {version = "0.164.10", path = "../swc_ecma_transforms_typescript"}
6969
swc_node_base = {version = "0.5.8", path = "../swc_node_base"}
7070
tempfile = "3.1.0"
7171
testing = {version = "0.31.31", path = "../testing"}

0 commit comments

Comments
 (0)