Skip to content

Commit 0a13105

Browse files
committed
chore: Publish crates
1 parent 56ad09a commit 0a13105

File tree

18 files changed

+65
-62
lines changed

18 files changed

+65
-62
lines changed

CHANGELOG.md

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

88
- **(es/modules)** Add the missing span for `export default` (#5170) ([997240c](https://github.com/swc-project/swc/commit/997240cfe68ff7787d73e93758f2d2304715e249))
99

10+
11+
- **(es/modules)** Keep TDZ for `export default` if possible (#5164) ([56ad09a](https://github.com/swc-project/swc/commit/56ad09afb245b940a660a394908c1501fa5781ef))
12+
1013
### Features
1114

1215

Cargo.lock

Lines changed: 16 additions & 16 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: 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.34.0"
8+
version = "0.35.0"
99

1010
[[bin]]
1111
bench = false
@@ -22,7 +22,7 @@ swc_common = { version = "0.23.0", features = [
2222
], path = "../swc_common" }
2323
swc_ecma_ast = { version = "0.84.0", path = "../swc_ecma_ast" }
2424
swc_ecma_codegen = { version = "0.115.0", path = "../swc_ecma_codegen" }
25-
swc_ecma_minifier = { version = "0.135.0", path = "../swc_ecma_minifier" }
25+
swc_ecma_minifier = { version = "0.136.0", path = "../swc_ecma_minifier" }
2626
swc_ecma_parser = { version = "0.111.0", path = "../swc_ecma_parser" }
2727
swc_ecma_transforms_base = { version = "0.97.0", path = "../swc_ecma_transforms_base" }
2828
swc_ecma_visit = { version = "0.70.0", path = "../swc_ecma_visit" }

crates/swc/Cargo.toml

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

1414
[lib]
1515
bench = false
@@ -61,10 +61,10 @@ swc_ecma_loader = {version = "0.35.0", path = "../swc_ecma_loader", features = [
6161
"node",
6262
"tsc",
6363
]}
64-
swc_ecma_minifier = {version = "0.135.0", path = "../swc_ecma_minifier"}
64+
swc_ecma_minifier = {version = "0.136.0", path = "../swc_ecma_minifier"}
6565
swc_ecma_parser = {version = "0.111.0", path = "../swc_ecma_parser"}
66-
swc_ecma_preset_env = {version = "0.149.0", path = "../swc_ecma_preset_env"}
67-
swc_ecma_transforms = {version = "0.174.0", path = "../swc_ecma_transforms", features = [
66+
swc_ecma_preset_env = {version = "0.150.0", path = "../swc_ecma_preset_env"}
67+
swc_ecma_transforms = {version = "0.175.0", path = "../swc_ecma_transforms", features = [
6868
"compat",
6969
"module",
7070
"optimization",
@@ -74,10 +74,10 @@ swc_ecma_transforms = {version = "0.174.0", path = "../swc_ecma_transforms", fea
7474
]}
7575
swc_ecma_transforms_base = {version = "0.97.0", path = "../swc_ecma_transforms_base"}
7676
swc_ecma_transforms_compat = {version = "0.114.0", path = "../swc_ecma_transforms_compat"}
77-
swc_ecma_transforms_optimization = {version = "0.143.0", path = "../swc_ecma_transforms_optimization"}
77+
swc_ecma_transforms_optimization = {version = "0.144.0", path = "../swc_ecma_transforms_optimization"}
7878
swc_ecma_utils = {version = "0.93.0", path = "../swc_ecma_utils"}
7979
swc_ecma_visit = {version = "0.70.0", path = "../swc_ecma_visit"}
80-
swc_ecmascript = {version = "0.179.0", path = "../swc_ecmascript"}
80+
swc_ecmascript = {version = "0.180.0", path = "../swc_ecmascript"}
8181
swc_error_reporters = {version = "0.7.0", path = "../swc_error_reporters"}
8282
swc_node_comments = {version = "0.10.0", path = "../swc_node_comments"}
8383
swc_plugin_proxy = {version = "0.11.0", path = "../swc_plugin_proxy", optional = true}

crates/swc_bundler/Cargo.toml

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

1414
[package.metadata.docs.rs]
1515
all-features = true
@@ -44,7 +44,7 @@ swc_ecma_codegen = { version = "0.115.0", path = "../swc_ecma_codegen" }
4444
swc_ecma_loader = { version = "0.35.0", path = "../swc_ecma_loader" }
4545
swc_ecma_parser = { version = "0.111.0", path = "../swc_ecma_parser" }
4646
swc_ecma_transforms_base = { version = "0.97.0", path = "../swc_ecma_transforms_base" }
47-
swc_ecma_transforms_optimization = { version = "0.143.0", path = "../swc_ecma_transforms_optimization" }
47+
swc_ecma_transforms_optimization = { version = "0.144.0", path = "../swc_ecma_transforms_optimization" }
4848
swc_ecma_utils = { version = "0.93.0", path = "../swc_ecma_utils" }
4949
swc_ecma_visit = { version = "0.70.0", path = "../swc_ecma_visit" }
5050
swc_fast_graph = { version = "0.11.0", path = "../swc_fast_graph/" }
@@ -61,10 +61,10 @@ swc_ecma_loader = { version = "0.35.0", path = "../swc_ecma_loader", features =
6161
"node",
6262
"cache",
6363
] }
64-
swc_ecma_minifier = { version = "0.135.0", path = "../swc_ecma_minifier" }
64+
swc_ecma_minifier = { version = "0.136.0", path = "../swc_ecma_minifier" }
6565
swc_ecma_transforms_proposal = { version = "0.122.0", path = "../swc_ecma_transforms_proposal" }
66-
swc_ecma_transforms_react = { version = "0.132.0", path = "../swc_ecma_transforms_react" }
67-
swc_ecma_transforms_typescript = { version = "0.136.0", path = "../swc_ecma_transforms_typescript" }
66+
swc_ecma_transforms_react = { version = "0.133.0", path = "../swc_ecma_transforms_react" }
67+
swc_ecma_transforms_typescript = { version = "0.137.0", path = "../swc_ecma_transforms_typescript" }
6868
swc_node_base = { version = "0.5.0", path = "../swc_node_base" }
6969
tempfile = "3.1.0"
7070
testing = { version = "0.25.0", path = "../testing" }

crates/swc_cli/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"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.79.0"
9+
version = "0.80.0"
1010

1111
[[bin]]
1212
bench = false
@@ -32,7 +32,7 @@ rayon = "1"
3232
relative-path = "1.6.1"
3333
serde = { version = "1", features = ["derive"] }
3434
serde_json = { version = "1", features = ["unbounded_depth"] }
35-
swc = { version = "0.205.0", path = "../swc" }
35+
swc = { version = "0.206.0", path = "../swc" }
3636
swc_common = { version = "0.23.0", path = "../swc_common" }
3737
swc_plugin_runner = { version = "0.64.0", path = "../swc_plugin_runner", default-features = false, optional = true }
3838
swc_trace_macro = { version = "0.1.0", path = "../swc_trace_macro" }

crates/swc_ecma_minifier/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", "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.135.0"
10+
version = "0.136.0"
1111

1212
[package.metadata.docs.rs]
1313
all-features = true
@@ -43,7 +43,7 @@ swc_ecma_ast = {version = "0.84.0", path = "../swc_ecma_ast"}
4343
swc_ecma_codegen = {version = "0.115.0", path = "../swc_ecma_codegen"}
4444
swc_ecma_parser = {version = "0.111.0", path = "../swc_ecma_parser"}
4545
swc_ecma_transforms_base = {version = "0.97.0", path = "../swc_ecma_transforms_base", features = ["concurrent-renamer"]}
46-
swc_ecma_transforms_optimization = {version = "0.143.0", path = "../swc_ecma_transforms_optimization"}
46+
swc_ecma_transforms_optimization = {version = "0.144.0", path = "../swc_ecma_transforms_optimization"}
4747
swc_ecma_utils = {version = "0.93.0", path = "../swc_ecma_utils"}
4848
swc_ecma_visit = {version = "0.70.0", path = "../swc_ecma_visit"}
4949
swc_timer = {version = "0.11.0", path = "../swc_timer"}

crates/swc_ecma_preset_env/Cargo.toml

Lines changed: 2 additions & 2 deletions
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.149.0"
9+
version = "0.150.0"
1010

1111
[lib]
1212
bench = false
@@ -26,7 +26,7 @@ string_enum = {version = "0.3.1", path = "../string_enum"}
2626
swc_atoms = {version = "0.2", path = "../swc_atoms"}
2727
swc_common = { version = "0.23.0", path = "../swc_common"}
2828
swc_ecma_ast = {version = "0.84.0", path = "../swc_ecma_ast"}
29-
swc_ecma_transforms = {version = "0.174.0", path = "../swc_ecma_transforms", features = [
29+
swc_ecma_transforms = {version = "0.175.0", path = "../swc_ecma_transforms", features = [
3030
"compat",
3131
"proposal",
3232
]}

crates/swc_ecma_transforms/Cargo.toml

Lines changed: 5 additions & 5 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_ecma_transforms"
99
repository = "https://github.com/swc-project/swc.git"
10-
version = "0.174.0"
10+
version = "0.175.0"
1111

1212
[package.metadata.docs.rs]
1313
all-features = true
@@ -36,11 +36,11 @@ swc_common = { version = "0.23.0", path = "../swc_common" }
3636
swc_ecma_ast = { version = "0.84.0", path = "../swc_ecma_ast" }
3737
swc_ecma_transforms_base = { version = "0.97.0", path = "../swc_ecma_transforms_base" }
3838
swc_ecma_transforms_compat = { version = "0.114.0", path = "../swc_ecma_transforms_compat", optional = true }
39-
swc_ecma_transforms_module = { version = "0.130.0", path = "../swc_ecma_transforms_module", optional = true }
40-
swc_ecma_transforms_optimization = { version = "0.143.0", path = "../swc_ecma_transforms_optimization", optional = true }
39+
swc_ecma_transforms_module = { version = "0.131.0", path = "../swc_ecma_transforms_module", optional = true }
40+
swc_ecma_transforms_optimization = { version = "0.144.0", path = "../swc_ecma_transforms_optimization", optional = true }
4141
swc_ecma_transforms_proposal = { version = "0.122.0", path = "../swc_ecma_transforms_proposal", optional = true }
42-
swc_ecma_transforms_react = { version = "0.132.0", path = "../swc_ecma_transforms_react", optional = true }
43-
swc_ecma_transforms_typescript = { version = "0.136.0", path = "../swc_ecma_transforms_typescript", optional = true }
42+
swc_ecma_transforms_react = { version = "0.133.0", path = "../swc_ecma_transforms_react", optional = true }
43+
swc_ecma_transforms_typescript = { version = "0.137.0", path = "../swc_ecma_transforms_typescript", optional = true }
4444
swc_ecma_utils = { version = "0.93.0", path = "../swc_ecma_utils" }
4545
swc_ecma_visit = { version = "0.70.0", path = "../swc_ecma_visit" }
4646

crates/swc_ecma_transforms_module/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"]
77
license = "Apache-2.0"
88
name = "swc_ecma_transforms_module"
99
repository = "https://github.com/swc-project/swc.git"
10-
version = "0.130.1"
10+
version = "0.131.0"
1111

1212
[lib]
1313
bench = false

0 commit comments

Comments
 (0)