chore: Publish crates with swc_core v0.109.0

This commit is contained in:
강동윤 (Donny) 2024-10-08 14:02:03 +09:00
parent bfea322351
commit 4b0d043c9b
27 changed files with 44 additions and 50 deletions

View File

@ -1,6 +0,0 @@
---
swc_ecma_transforms_testing: breaking
swc_ecma_transforms_optimization: patch
---
feat(es/testing): Parse test code as a `Program` instead of a `Module`

View File

@ -1,6 +0,0 @@
---
swc_ecma_preset_env: patch
swc_core: patch
---
feat(es/preset-env): Update preset-env data

View File

@ -5,6 +5,9 @@
- **(ci)** Fix target triples ([#9622](https://github.com/swc-project/swc/issues/9622)) ([f625035](https://github.com/swc-project/swc/commit/f625035f8a21eb6d2bc487669a534257f3ef7c7c))
- **(es/minifier)** Compress consecutive return statements properly ([#9620](https://github.com/swc-project/swc/issues/9620)) ([8263da1](https://github.com/swc-project/swc/commit/8263da17664cc7cb5d49e1a8e9fbca8037fe991f))
@ -20,8 +23,14 @@
- **(es/preset-env)** Update preset-env data ([#9573](https://github.com/swc-project/swc/issues/9573)) ([9a11d34](https://github.com/swc-project/swc/commit/9a11d34ee569f64e8db02fc90beacbba0f2de0cf))
- **(es/testing)** Parse test code as a `Program` instead of a `Module` ([#9264](https://github.com/swc-project/swc/issues/9264)) ([166b858](https://github.com/swc-project/swc/commit/166b8581c226b127f5d503cd21c22c0a3a8c675c))
- **(es/testing)** Parse test code as a `Program` instead of a `Module` ([#9623](https://github.com/swc-project/swc/issues/9623)) ([bfea322](https://github.com/swc-project/swc/commit/bfea3223515e378c3ebe669f4a9012919f4f9547))
### Miscellaneous Tasks
@ -1328,9 +1337,6 @@
- **(es/compat)** Avoid reserved name for private method ([#8949](https://github.com/swc-project/swc/issues/8949)) ([7053bb1](https://github.com/swc-project/swc/commit/7053bb16ce19ba476760b7fe0b1627d1210d6e18))
- **(es/minifier)** Abort inliner on mutation via property ([#8938](https://github.com/swc-project/swc/issues/8938)) ([257afc9](https://github.com/swc-project/swc/commit/257afc92c9b2a751935f8fdee1b84bc9222359b6))
- **(es/minifier)** Don't invoke IIFE containing reserved words ([#8939](https://github.com/swc-project/swc/issues/8939)) ([5a3456c](https://github.com/swc-project/swc/commit/5a3456c254a686ceef343ce5f9ec67b3e4644138))

10
Cargo.lock generated
View File

@ -4007,7 +4007,7 @@ dependencies = [
[[package]]
name = "swc_cli_impl"
version = "0.26.0"
version = "0.27.0"
dependencies = [
"anyhow",
"assert_cmd",
@ -4115,7 +4115,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.108.0"
version = "0.109.0"
dependencies = [
"anyhow",
"binding_macros",
@ -4729,7 +4729,7 @@ dependencies = [
[[package]]
name = "swc_ecma_preset_env"
version = "0.222.0"
version = "0.222.1"
dependencies = [
"anyhow",
"codspeed-criterion-compat",
@ -4939,7 +4939,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_optimization"
version = "0.213.0"
version = "0.213.1"
dependencies = [
"dashmap 5.5.3",
"indexmap 2.5.0",
@ -5022,7 +5022,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_testing"
version = "0.154.0"
version = "0.155.0"
dependencies = [
"ansi_term",
"anyhow",

View File

@ -87,7 +87,7 @@ swc_ecma_loader = { version = "0.52.1", path = "../swc_ecma_loader", features =
] }
swc_ecma_minifier = { version = "0.209.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.222.0", path = "../swc_ecma_preset_env" }
swc_ecma_preset_env = { version = "0.222.1", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.244.0", path = "../swc_ecma_transforms", features = [
"compat",
"module",
@ -98,7 +98,7 @@ swc_ecma_transforms = { version = "0.244.0", path = "../swc_ecma_transforms", fe
] }
swc_ecma_transforms_base = { version = "0.150.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.176.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.213.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.213.1", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.138.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "1.0.0", path = "../swc_error_reporters" }

View File

@ -44,7 +44,7 @@ swc_ecma_codegen = { version = "0.158.1", path = "../swc_ecma_co
swc_ecma_loader = { version = "0.52.1", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.150.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.213.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.213.1", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.138.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "1.0.0", path = "../swc_fast_graph/" }

View File

@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_cli_impl"
repository = "https://github.com/swc-project/swc.git"
version = "0.26.0"
version = "0.27.0"
[[bin]]
name = "swc"
@ -39,7 +39,7 @@ tracing-futures = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
walkdir = { workspace = true }
swc_core = { version = "0.108.0", features = [
swc_core = { version = "0.109.0", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_core"
repository = "https://github.com/swc-project/swc.git"
version = "0.108.0"
version = "0.109.0"
[package.metadata.docs.rs]
features = [
"allocator_node",
@ -359,15 +359,15 @@ swc_ecma_lints = { optional = true, version = "0.105.0", path
swc_ecma_loader = { optional = true, version = "0.52.1", path = "../swc_ecma_loader" }
swc_ecma_minifier = { optional = true, version = "0.209.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { optional = true, version = "0.222.0", path = "../swc_ecma_preset_env" }
swc_ecma_preset_env = { optional = true, version = "0.222.1", path = "../swc_ecma_preset_env" }
swc_ecma_quote_macros = { optional = true, version = "0.63.0", path = "../swc_ecma_quote_macros" }
swc_ecma_transforms_base = { optional = true, version = "0.150.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { optional = true, version = "0.176.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { optional = true, version = "0.195.0", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_optimization = { optional = true, version = "0.213.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { optional = true, version = "0.213.1", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_proposal = { optional = true, version = "0.184.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { optional = true, version = "0.196.0", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_testing = { optional = true, version = "0.154.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_testing = { optional = true, version = "0.155.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_typescript = { optional = true, version = "0.203.0", path = "../swc_ecma_transforms_typescript" }
swc_ecma_usage_analyzer = { optional = true, version = "0.34.0", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { optional = true, version = "0.138.0", path = "../swc_ecma_utils" }

View File

@ -23,4 +23,4 @@ tracing = { workspace = true }
[dev-dependencies]
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.154.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_testing = { version = "0.155.0", path = "../swc_ecma_transforms_testing" }

View File

@ -37,4 +37,4 @@ tracing = { workspace = true }
[dev-dependencies]
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.154.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_testing = { version = "0.155.0", path = "../swc_ecma_transforms_testing" }

View File

@ -25,4 +25,4 @@ tracing = { workspace = true }
[dev-dependencies]
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.154.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_testing = { version = "0.155.0", path = "../swc_ecma_transforms_testing" }

View File

@ -27,4 +27,4 @@ swc_trace_macro = { version = "1.0.0", path = "../swc_trace_macro" }
[dev-dependencies]
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.154.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_testing = { version = "0.155.0", path = "../swc_ecma_transforms_testing" }

View File

@ -28,4 +28,4 @@ swc_trace_macro = { version = "1.0.0", path = "../swc_trace_macro" }
[dev-dependencies]
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.154.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_testing = { version = "0.155.0", path = "../swc_ecma_transforms_testing" }

View File

@ -26,4 +26,4 @@ swc_trace_macro = { version = "1.0.0", path = "../swc_trace_macro" }
[dev-dependencies]
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.154.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_testing = { version = "0.155.0", path = "../swc_ecma_transforms_testing" }

View File

@ -26,4 +26,4 @@ tracing = { workspace = true }
[dev-dependencies]
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.154.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_testing = { version = "0.155.0", path = "../swc_ecma_transforms_testing" }

View File

@ -24,4 +24,4 @@ swc_trace_macro = { version = "1.0.0", path = "../swc_trace_macro" }
[dev-dependencies]
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.154.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_testing = { version = "0.155.0", path = "../swc_ecma_transforms_testing" }

View File

@ -64,7 +64,7 @@ swc_ecma_ast = { version = "0.121.1", path = "../swc_ecma_ast", features = [
swc_ecma_codegen = { version = "0.158.1", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.150.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.213.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.213.1", path = "../swc_ecma_transforms_optimization" }
swc_ecma_usage_analyzer = { version = "0.34.0", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { version = "0.138.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_ecma_preset_env"
repository = { workspace = true }
version = "0.222.0"
version = "0.222.1"
[lib]
bench = false

View File

@ -38,7 +38,7 @@ swc_ecma_ast = { version = "0.121.1", path = "../swc_ecma_as
swc_ecma_transforms_base = { version = "0.150.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.176.0", path = "../swc_ecma_transforms_compat", optional = true }
swc_ecma_transforms_module = { version = "0.195.0", path = "../swc_ecma_transforms_module", optional = true }
swc_ecma_transforms_optimization = { version = "0.213.0", path = "../swc_ecma_transforms_optimization", optional = true }
swc_ecma_transforms_optimization = { version = "0.213.1", path = "../swc_ecma_transforms_optimization", optional = true }
swc_ecma_transforms_proposal = { version = "0.184.0", path = "../swc_ecma_transforms_proposal", optional = true }
swc_ecma_transforms_react = { version = "0.196.0", path = "../swc_ecma_transforms_react", optional = true }
swc_ecma_transforms_typescript = { version = "0.203.0", path = "../swc_ecma_transforms_typescript", optional = true }
@ -52,5 +52,5 @@ tempfile = { workspace = true }
swc_ecma_codegen = { version = "0.158.1", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.154.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_testing = { version = "0.155.0", path = "../swc_ecma_transforms_testing" }
testing = { version = "0.42.0", path = "../testing" }

View File

@ -55,5 +55,5 @@ swc_trace_macro = { version = "1.0.0", path = "../swc_trace_macro" }
serde_json = { workspace = true }
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.154.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_testing = { version = "0.155.0", path = "../swc_ecma_transforms_testing" }
testing = { version = "0.42.0", path = "../testing" }

View File

@ -45,6 +45,6 @@ swc_ecma_loader = { version = "0.52.1", path = "../swc_ecma_loader", features =
"tsc",
] }
swc_ecma_transforms_compat = { version = "0.176.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_testing = { version = "0.154.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_testing = { version = "0.155.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_typescript = { version = "0.203.0", path = "../swc_ecma_transforms_typescript" }
testing = { version = "0.42.0", path = "../testing/" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_transforms_optimization"
repository = "https://github.com/swc-project/swc.git"
version = "0.213.0"
version = "0.213.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
@ -46,6 +46,6 @@ swc_ecma_transforms_compat = { version = "0.176.0", path = "../swc_ecma_tran
swc_ecma_transforms_module = { version = "0.195.0", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_proposal = { version = "0.184.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.196.0", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_testing = { version = "0.154.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_testing = { version = "0.155.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_typescript = { version = "0.203.0", path = "../swc_ecma_transforms_typescript" }
testing = { version = "0.42.0", path = "../testing" }

View File

@ -38,5 +38,5 @@ serde_json = { workspace = true }
swc_ecma_codegen = { version = "0.158.1", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_compat = { version = "0.176.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_testing = { version = "0.154.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_testing = { version = "0.155.0", path = "../swc_ecma_transforms_testing" }
testing = { version = "0.42.0", path = "../testing" }

View File

@ -41,5 +41,5 @@ swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
[dev-dependencies]
swc_ecma_codegen = { version = "0.158.1", path = "../swc_ecma_codegen/" }
swc_ecma_transforms_compat = { version = "0.176.0", path = "../swc_ecma_transforms_compat/" }
swc_ecma_transforms_testing = { version = "0.154.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_testing = { version = "0.155.0", path = "../swc_ecma_transforms_testing" }
testing = { version = "0.42.0", path = "../testing" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_transforms_testing"
repository = "https://github.com/swc-project/swc.git"
version = "0.154.0"
version = "0.155.0"
[lib]
bench = false

View File

@ -32,7 +32,7 @@ swc_ecma_codegen = { version = "0.158.1", path = "../swc_ecma_codege
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_compat = { version = "0.176.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_proposal = { version = "0.184.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_testing = { version = "0.154.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_testing = { version = "0.155.0", path = "../swc_ecma_transforms_testing" }
testing = { version = "0.42.0", path = "../testing" }
[[bench]]

View File

@ -42,7 +42,7 @@ swc_ecma_ast = { version = "0.121.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.158.1", path = "../swc_ecma_codegen", optional = true }
swc_ecma_minifier = { version = "0.209.0", path = "../swc_ecma_minifier", optional = true }
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser", optional = true, default-features = false }
swc_ecma_preset_env = { version = "0.222.0", path = "../swc_ecma_preset_env", optional = true }
swc_ecma_preset_env = { version = "0.222.1", path = "../swc_ecma_preset_env", optional = true }
swc_ecma_quote = { version = "0.68.0", path = "../swc_ecma_quote", optional = true }
swc_ecma_transforms = { version = "0.244.0", path = "../swc_ecma_transforms", optional = true }
swc_ecma_utils = { version = "0.138.0", path = "../swc_ecma_utils", optional = true }