Skip to content

Commit fef8fc9

Browse files
committed
chore: Publish crates
1 parent 4c2d422 commit fef8fc9

File tree

21 files changed

+96
-93
lines changed

21 files changed

+96
-93
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
- **(css/parser)** Avoid skipping extra whitespaces (#6592) ([d8936ad](https://github.com/swc-project/swc/commit/d8936ade5b34f682af08e01833d629a67c54f888))
2424

2525

26+
- **(es/compat)** Prepend generated `_loop` to the correct scope (#6604) ([4c2d422](https://github.com/swc-project/swc/commit/4c2d42261ed0382c49e8a564b574362a5ab182a3))
27+
28+
2629
- **(es/parser)** Fix `typeof` in `TSCallSignatureDeclaration` (#6553) ([aa28aa0](https://github.com/swc-project/swc/commit/aa28aa0c7fefcaea063340c711a5ea8a3ba60e7b))
2730

2831

Cargo.lock

+19-19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/binding_macros/Cargo.toml

+3-3
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.22.10"
8+
version = "0.22.11"
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.234.10", path = "../swc" }
36+
swc = { optional = true, version = "0.234.11", path = "../swc" }
3737
swc_common = { optional = true, version = "0.29.19", path = "../swc_common" }
3838
swc_ecma_ast = { optional = true, version = "0.95.3", path = "../swc_ecma_ast" }
39-
swc_ecma_transforms = { optional = true, version = "0.199.7", path = "../swc_ecma_transforms" }
39+
swc_ecma_transforms = { optional = true, version = "0.199.8", path = "../swc_ecma_transforms" }
4040
swc_ecma_visit = { optional = true, version = "0.81.3", path = "../swc_ecma_visit" }
4141

4242
# Optional deps for the wasm binding macro

crates/dbg-swc/Cargo.toml

+2-2
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.59.16"
8+
version = "0.59.17"
99

1010
[[bin]]
1111
bench = false
@@ -27,7 +27,7 @@ swc_common = { version = "0.29.19", features = [
2727
], path = "../swc_common" }
2828
swc_ecma_ast = { version = "0.95.3", path = "../swc_ecma_ast" }
2929
swc_ecma_codegen = { version = "0.128.5", path = "../swc_ecma_codegen" }
30-
swc_ecma_minifier = { version = "0.160.9", path = "../swc_ecma_minifier", features = [
30+
swc_ecma_minifier = { version = "0.160.10", path = "../swc_ecma_minifier", features = [
3131
"concurrent",
3232
] }
3333
swc_ecma_parser = { version = "0.123.5", path = "../swc_ecma_parser" }

crates/swc/Cargo.toml

+6-6
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.234.10"
12+
version = "0.234.11"
1313

1414
[lib]
1515
bench = false
@@ -79,10 +79,10 @@ swc_ecma_loader = { version = "0.41.20", path = "../swc_ecma_loader", features =
7979
"node",
8080
"tsc",
8181
] }
82-
swc_ecma_minifier = { version = "0.160.9", path = "../swc_ecma_minifier" }
82+
swc_ecma_minifier = { version = "0.160.10", path = "../swc_ecma_minifier" }
8383
swc_ecma_parser = { version = "0.123.5", path = "../swc_ecma_parser" }
84-
swc_ecma_preset_env = { version = "0.175.7", path = "../swc_ecma_preset_env" }
85-
swc_ecma_transforms = { version = "0.199.7", path = "../swc_ecma_transforms", features = [
84+
swc_ecma_preset_env = { version = "0.175.8", path = "../swc_ecma_preset_env" }
85+
swc_ecma_transforms = { version = "0.199.8", path = "../swc_ecma_transforms", features = [
8686
"compat",
8787
"module",
8888
"optimization",
@@ -91,8 +91,8 @@ swc_ecma_transforms = { version = "0.199.7", path = "../swc_ecma_transforms", fe
9191
"typescript",
9292
] }
9393
swc_ecma_transforms_base = { version = "0.112.6", path = "../swc_ecma_transforms_base" }
94-
swc_ecma_transforms_compat = { version = "0.137.6", path = "../swc_ecma_transforms_compat" }
95-
swc_ecma_transforms_optimization = { version = "0.168.7", path = "../swc_ecma_transforms_optimization" }
94+
swc_ecma_transforms_compat = { version = "0.137.7", path = "../swc_ecma_transforms_compat" }
95+
swc_ecma_transforms_optimization = { version = "0.168.8", path = "../swc_ecma_transforms_optimization" }
9696
swc_ecma_utils = { version = "0.106.5", path = "../swc_ecma_utils" }
9797
swc_ecma_visit = { version = "0.81.3", path = "../swc_ecma_visit" }
9898
swc_error_reporters = { version = "0.13.20", path = "../swc_error_reporters" }

crates/swc_bundler/Cargo.toml

+6-6
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.193.9"
12+
version = "0.193.10"
1313

1414
[package.metadata.docs.rs]
1515
all-features = true
@@ -44,7 +44,7 @@ swc_ecma_codegen = { version = "0.128.5", path = "../swc_ecma_co
4444
swc_ecma_loader = { version = "0.41.20", path = "../swc_ecma_loader" }
4545
swc_ecma_parser = { version = "0.123.5", path = "../swc_ecma_parser" }
4646
swc_ecma_transforms_base = { version = "0.112.6", path = "../swc_ecma_transforms_base" }
47-
swc_ecma_transforms_optimization = { version = "0.168.7", path = "../swc_ecma_transforms_optimization" }
47+
swc_ecma_transforms_optimization = { version = "0.168.8", path = "../swc_ecma_transforms_optimization" }
4848
swc_ecma_utils = { version = "0.106.5", path = "../swc_ecma_utils" }
4949
swc_ecma_visit = { version = "0.81.3", path = "../swc_ecma_visit" }
5050
swc_fast_graph = { version = "0.17.20", path = "../swc_fast_graph/" }
@@ -61,12 +61,12 @@ swc_ecma_loader = { version = "0.41.20", path = "../swc_ecma_loader", features =
6161
"node",
6262
"cache",
6363
] }
64-
swc_ecma_minifier = { version = "0.160.9", path = "../swc_ecma_minifier", features = [
64+
swc_ecma_minifier = { version = "0.160.10", path = "../swc_ecma_minifier", features = [
6565
"concurrent",
6666
] }
67-
swc_ecma_transforms_proposal = { version = "0.145.6", path = "../swc_ecma_transforms_proposal" }
68-
swc_ecma_transforms_react = { version = "0.156.6", path = "../swc_ecma_transforms_react" }
69-
swc_ecma_transforms_typescript = { version = "0.160.7", path = "../swc_ecma_transforms_typescript" }
67+
swc_ecma_transforms_proposal = { version = "0.145.7", path = "../swc_ecma_transforms_proposal" }
68+
swc_ecma_transforms_react = { version = "0.156.7", path = "../swc_ecma_transforms_react" }
69+
swc_ecma_transforms_typescript = { version = "0.160.8", path = "../swc_ecma_transforms_typescript" }
7070
swc_node_base = { version = "0.5.8", path = "../swc_node_base" }
7171
tempfile = "3.1.0"
7272
testing = { version = "0.31.20", path = "../testing" }

crates/swc_core/Cargo.toml

+13-13
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "Apache-2.0"
77
name = "swc_core"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.46.12"
9+
version = "0.46.13"
1010
[package.metadata.docs.rs]
1111
features = [
1212
"common_perf",
@@ -340,10 +340,10 @@ wasmer = { optional = true, version = "2.3.0", default-features = false }
340340
wasmer-wasi = { optional = true, version = "2.3.0", default-features = false }
341341

342342
# swc_* dependencies
343-
binding_macros = { optional = true, version = "0.22.10", path = "../binding_macros" }
344-
swc = { optional = true, version = "0.234.10", path = "../swc" }
343+
binding_macros = { optional = true, version = "0.22.11", path = "../binding_macros" }
344+
swc = { optional = true, version = "0.234.11", path = "../swc" }
345345
swc_atoms = { optional = true, version = "0.4.25", path = "../swc_atoms" }
346-
swc_bundler = { optional = true, version = "0.193.9", path = "../swc_bundler" }
346+
swc_bundler = { optional = true, version = "0.193.10", path = "../swc_bundler" }
347347
swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" }
348348
swc_common = { optional = true, version = "0.29.19", path = "../swc_common" }
349349
swc_css_ast = { optional = true, version = "0.129.3", path = "../swc_css_ast" }
@@ -357,23 +357,23 @@ swc_css_visit = { optional = true, version = "0.128.3", path
357357
swc_ecma_ast = { optional = true, version = "0.95.3", path = "../swc_ecma_ast" }
358358
swc_ecma_codegen = { optional = true, version = "0.128.5", path = "../swc_ecma_codegen" }
359359
swc_ecma_loader = { optional = true, version = "0.41.20", path = "../swc_ecma_loader" }
360-
swc_ecma_minifier = { optional = true, version = "0.160.9", path = "../swc_ecma_minifier" }
360+
swc_ecma_minifier = { optional = true, version = "0.160.10", path = "../swc_ecma_minifier" }
361361
swc_ecma_parser = { optional = true, version = "0.123.5", path = "../swc_ecma_parser" }
362-
swc_ecma_preset_env = { optional = true, version = "0.175.7", path = "../swc_ecma_preset_env" }
362+
swc_ecma_preset_env = { optional = true, version = "0.175.8", path = "../swc_ecma_preset_env" }
363363
swc_ecma_quote_macros = { optional = true, version = "0.34.5", path = "../swc_ecma_quote_macros" }
364364
swc_ecma_transforms_base = { optional = true, version = "0.112.6", path = "../swc_ecma_transforms_base" }
365-
swc_ecma_transforms_compat = { optional = true, version = "0.137.6", path = "../swc_ecma_transforms_compat" }
366-
swc_ecma_transforms_module = { optional = true, version = "0.154.6", path = "../swc_ecma_transforms_module" }
367-
swc_ecma_transforms_optimization = { optional = true, version = "0.168.7", path = "../swc_ecma_transforms_optimization" }
368-
swc_ecma_transforms_proposal = { optional = true, version = "0.145.6", path = "../swc_ecma_transforms_proposal" }
369-
swc_ecma_transforms_react = { optional = true, version = "0.156.6", path = "../swc_ecma_transforms_react" }
365+
swc_ecma_transforms_compat = { optional = true, version = "0.137.7", path = "../swc_ecma_transforms_compat" }
366+
swc_ecma_transforms_module = { optional = true, version = "0.154.7", path = "../swc_ecma_transforms_module" }
367+
swc_ecma_transforms_optimization = { optional = true, version = "0.168.8", path = "../swc_ecma_transforms_optimization" }
368+
swc_ecma_transforms_proposal = { optional = true, version = "0.145.7", path = "../swc_ecma_transforms_proposal" }
369+
swc_ecma_transforms_react = { optional = true, version = "0.156.7", path = "../swc_ecma_transforms_react" }
370370
swc_ecma_transforms_testing = { optional = true, version = "0.115.7", path = "../swc_ecma_transforms_testing" }
371-
swc_ecma_transforms_typescript = { optional = true, version = "0.160.7", path = "../swc_ecma_transforms_typescript" }
371+
swc_ecma_transforms_typescript = { optional = true, version = "0.160.8", path = "../swc_ecma_transforms_typescript" }
372372
swc_ecma_usage_analyzer = { optional = true, version = "0.1.0", path = "../swc_ecma_usage_analyzer" }
373373
swc_ecma_utils = { optional = true, version = "0.106.5", path = "../swc_ecma_utils" }
374374
swc_ecma_visit = { optional = true, version = "0.81.3", path = "../swc_ecma_visit" }
375375
swc_node_base = { optional = true, version = "0.5.8", path = "../swc_node_base" }
376-
swc_node_bundler = { optional = true, version = "0.20.10", path = "../swc_node_bundler" }
376+
swc_node_bundler = { optional = true, version = "0.20.11", path = "../swc_node_bundler" }
377377
swc_nodejs_common = { optional = true, version = "0.0.4", path = "../swc_nodejs_common" }
378378
swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" }
379379
swc_plugin_macro = { optional = true, version = "0.9.10", path = "../swc_plugin_macro" }

crates/swc_ecma_minifier/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/lists/*.json"]
77
license = "Apache-2.0"
88
name = "swc_ecma_minifier"
99
repository = "https://github.com/swc-project/swc.git"
10-
version = "0.160.9"
10+
version = "0.160.10"
1111

1212
[package.metadata.docs.rs]
1313
all-features = true
@@ -53,7 +53,7 @@ swc_ecma_ast = { version = "0.95.3", path = "../swc_ecma_ast
5353
swc_ecma_codegen = { version = "0.128.5", path = "../swc_ecma_codegen" }
5454
swc_ecma_parser = { version = "0.123.5", path = "../swc_ecma_parser" }
5555
swc_ecma_transforms_base = { version = "0.112.6", path = "../swc_ecma_transforms_base" }
56-
swc_ecma_transforms_optimization = { version = "0.168.7", path = "../swc_ecma_transforms_optimization" }
56+
swc_ecma_transforms_optimization = { version = "0.168.8", path = "../swc_ecma_transforms_optimization" }
5757
swc_ecma_usage_analyzer = { version = "0.1.0", path = "../swc_ecma_usage_analyzer" }
5858
swc_ecma_utils = { version = "0.106.5", path = "../swc_ecma_utils" }
5959
swc_ecma_visit = { version = "0.81.3", path = "../swc_ecma_visit" }

crates/swc_ecma_preset_env/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
77
license = "Apache-2.0"
88
name = "swc_ecma_preset_env"
9-
version = "0.175.7"
9+
version = "0.175.8"
1010

1111
[lib]
1212
bench = false
@@ -26,7 +26,7 @@ string_enum = { version = "0.3.2", path = "../string_enum" }
2626
swc_atoms = { version = "0.4.25", path = "../swc_atoms" }
2727
swc_common = { version = "0.29.19", path = "../swc_common" }
2828
swc_ecma_ast = { version = "0.95.3", path = "../swc_ecma_ast" }
29-
swc_ecma_transforms = { version = "0.199.7", path = "../swc_ecma_transforms", features = [
29+
swc_ecma_transforms = { version = "0.199.8", path = "../swc_ecma_transforms", features = [
3030
"compat",
3131
"proposal",
3232
] }

0 commit comments

Comments
 (0)