chore: Bump crates

This commit is contained in:
SWC Bot 2024-06-14 05:24:10 +00:00
parent 60fe5f0eff
commit 931f752d54
50 changed files with 409 additions and 406 deletions

View File

@ -1,6 +1,12 @@
# Changelog # Changelog
## [unreleased] ## [unreleased]
### Performance
- **(es/parser)** Do not track `raw` by hand ([#9047](https://github.com/swc-project/swc/issues/9047)) ([60fe5f0](https://github.com/swc-project/swc/commit/60fe5f0effdcc45f0cfd363fd0ff4e6f4dba5b33))
### Testing ### Testing
@ -1258,9 +1264,6 @@
- **(es/module)** Read link if an import is resolved as symlink ([#8297](https://github.com/swc-project/swc/issues/8297)) ([7dfdc12](https://github.com/swc-project/swc/commit/7dfdc1221890d373d2e6caf52bc8dee8c20765ca)) - **(es/module)** Read link if an import is resolved as symlink ([#8297](https://github.com/swc-project/swc/issues/8297)) ([7dfdc12](https://github.com/swc-project/swc/commit/7dfdc1221890d373d2e6caf52bc8dee8c20765ca))
- **(es/parser)** Adjust the context for cond expr while parsing JSX ([#8261](https://github.com/swc-project/swc/issues/8261)) ([0678c3c](https://github.com/swc-project/swc/commit/0678c3c55fa65780caf15e55919276912348943b))
- **(es/parser)** Fix ASI hazard of `static` ([#8262](https://github.com/swc-project/swc/issues/8262)) ([c128153](https://github.com/swc-project/swc/commit/c1281534b65d1d7f0069c04d35c1eb29f08e9a14)) - **(es/parser)** Fix ASI hazard of `static` ([#8262](https://github.com/swc-project/swc/issues/8262)) ([c128153](https://github.com/swc-project/swc/commit/c1281534b65d1d7f0069c04d35c1eb29f08e9a14))

96
Cargo.lock generated
View File

@ -309,7 +309,7 @@ dependencies = [
[[package]] [[package]]
name = "binding_macros" name = "binding_macros"
version = "0.67.0" version = "0.68.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"console_error_panic_hook", "console_error_panic_hook",
@ -1064,7 +1064,7 @@ checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5"
[[package]] [[package]]
name = "dbg-swc" name = "dbg-swc"
version = "0.94.3" version = "0.95.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"clap 3.2.25", "clap 3.2.25",
@ -1908,7 +1908,7 @@ dependencies = [
[[package]] [[package]]
name = "jsdoc" name = "jsdoc"
version = "0.113.1" version = "0.114.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"dashmap", "dashmap",
@ -3706,7 +3706,7 @@ dependencies = [
[[package]] [[package]]
name = "swc" name = "swc"
version = "0.276.0" version = "0.277.0"
dependencies = [ dependencies = [
"ansi_term", "ansi_term",
"anyhow", "anyhow",
@ -3777,7 +3777,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_bundler" name = "swc_bundler"
version = "0.228.0" version = "0.229.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"crc", "crc",
@ -3832,7 +3832,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_cli_impl" name = "swc_cli_impl"
version = "0.11.0" version = "0.12.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"assert_cmd", "assert_cmd",
@ -3891,7 +3891,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_compiler_base" name = "swc_compiler_base"
version = "0.10.1" version = "0.11.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"base64", "base64",
@ -3939,7 +3939,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_core" name = "swc_core"
version = "0.93.4" version = "0.94.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"binding_macros", "binding_macros",
@ -4177,7 +4177,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_ast" name = "swc_ecma_ast"
version = "0.113.7" version = "0.114.0"
dependencies = [ dependencies = [
"arbitrary", "arbitrary",
"bitflags 2.5.0", "bitflags 2.5.0",
@ -4197,7 +4197,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_codegen" name = "swc_ecma_codegen"
version = "0.149.3" version = "0.150.0"
dependencies = [ dependencies = [
"base64", "base64",
"criterion", "criterion",
@ -4231,7 +4231,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_compat_bugfixes" name = "swc_ecma_compat_bugfixes"
version = "0.5.1" version = "0.6.0"
dependencies = [ dependencies = [
"swc_atoms", "swc_atoms",
"swc_common", "swc_common",
@ -4248,7 +4248,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_compat_common" name = "swc_ecma_compat_common"
version = "0.5.1" version = "0.6.0"
dependencies = [ dependencies = [
"swc_common", "swc_common",
"swc_ecma_ast", "swc_ecma_ast",
@ -4259,7 +4259,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_compat_es2015" name = "swc_ecma_compat_es2015"
version = "0.5.4" version = "0.6.0"
dependencies = [ dependencies = [
"arrayvec", "arrayvec",
"indexmap 2.1.0", "indexmap 2.1.0",
@ -4285,7 +4285,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_compat_es2016" name = "swc_ecma_compat_es2016"
version = "0.5.1" version = "0.6.0"
dependencies = [ dependencies = [
"swc_atoms", "swc_atoms",
"swc_common", "swc_common",
@ -4302,7 +4302,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_compat_es2017" name = "swc_ecma_compat_es2017"
version = "0.5.1" version = "0.6.0"
dependencies = [ dependencies = [
"serde", "serde",
"swc_atoms", "swc_atoms",
@ -4320,7 +4320,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_compat_es2018" name = "swc_ecma_compat_es2018"
version = "0.5.1" version = "0.6.0"
dependencies = [ dependencies = [
"serde", "serde",
"swc_atoms", "swc_atoms",
@ -4339,7 +4339,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_compat_es2019" name = "swc_ecma_compat_es2019"
version = "0.5.1" version = "0.6.0"
dependencies = [ dependencies = [
"swc_atoms", "swc_atoms",
"swc_common", "swc_common",
@ -4355,7 +4355,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_compat_es2020" name = "swc_ecma_compat_es2020"
version = "0.5.1" version = "0.6.0"
dependencies = [ dependencies = [
"serde", "serde",
"swc_atoms", "swc_atoms",
@ -4373,7 +4373,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_compat_es2021" name = "swc_ecma_compat_es2021"
version = "0.5.1" version = "0.6.0"
dependencies = [ dependencies = [
"swc_atoms", "swc_atoms",
"swc_common", "swc_common",
@ -4387,7 +4387,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_compat_es2022" name = "swc_ecma_compat_es2022"
version = "0.5.2" version = "0.6.0"
dependencies = [ dependencies = [
"swc_atoms", "swc_atoms",
"swc_common", "swc_common",
@ -4404,7 +4404,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_compat_es3" name = "swc_ecma_compat_es3"
version = "0.5.1" version = "0.6.0"
dependencies = [ dependencies = [
"swc_common", "swc_common",
"swc_ecma_ast", "swc_ecma_ast",
@ -4419,7 +4419,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_ext_transforms" name = "swc_ecma_ext_transforms"
version = "0.114.2" version = "0.115.0"
dependencies = [ dependencies = [
"phf", "phf",
"swc_atoms", "swc_atoms",
@ -4431,7 +4431,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_lints" name = "swc_ecma_lints"
version = "0.93.1" version = "0.94.0"
dependencies = [ dependencies = [
"auto_impl", "auto_impl",
"dashmap", "dashmap",
@ -4474,7 +4474,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_minifier" name = "swc_ecma_minifier"
version = "0.195.2" version = "0.196.0"
dependencies = [ dependencies = [
"ansi_term", "ansi_term",
"anyhow", "anyhow",
@ -4515,7 +4515,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_parser" name = "swc_ecma_parser"
version = "0.144.3" version = "0.145.0"
dependencies = [ dependencies = [
"criterion", "criterion",
"either", "either",
@ -4542,7 +4542,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_preset_env" name = "swc_ecma_preset_env"
version = "0.207.1" version = "0.208.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"criterion", "criterion",
@ -4570,7 +4570,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_quote" name = "swc_ecma_quote"
version = "0.60.1" version = "0.61.0"
dependencies = [ dependencies = [
"swc_atoms", "swc_atoms",
"swc_common", "swc_common",
@ -4581,7 +4581,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_quote_macros" name = "swc_ecma_quote_macros"
version = "0.55.1" version = "0.56.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"proc-macro2", "proc-macro2",
@ -4607,7 +4607,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_transforms" name = "swc_ecma_transforms"
version = "0.230.1" version = "0.231.0"
dependencies = [ dependencies = [
"pretty_assertions", "pretty_assertions",
"sourcemap", "sourcemap",
@ -4632,7 +4632,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_transforms_base" name = "swc_ecma_transforms_base"
version = "0.138.4" version = "0.139.0"
dependencies = [ dependencies = [
"better_scoped_tls", "better_scoped_tls",
"bitflags 2.5.0", "bitflags 2.5.0",
@ -4659,7 +4659,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_transforms_classes" name = "swc_ecma_transforms_classes"
version = "0.127.1" version = "0.128.0"
dependencies = [ dependencies = [
"swc_atoms", "swc_atoms",
"swc_common", "swc_common",
@ -4671,7 +4671,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_transforms_compat" name = "swc_ecma_transforms_compat"
version = "0.164.1" version = "0.165.0"
dependencies = [ dependencies = [
"arrayvec", "arrayvec",
"indexmap 2.1.0", "indexmap 2.1.0",
@ -4720,7 +4720,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_transforms_module" name = "swc_ecma_transforms_module"
version = "0.181.2" version = "0.182.0"
dependencies = [ dependencies = [
"Inflector", "Inflector",
"anyhow", "anyhow",
@ -4749,7 +4749,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_transforms_optimization" name = "swc_ecma_transforms_optimization"
version = "0.199.2" version = "0.200.0"
dependencies = [ dependencies = [
"dashmap", "dashmap",
"indexmap 2.1.0", "indexmap 2.1.0",
@ -4779,7 +4779,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_transforms_proposal" name = "swc_ecma_transforms_proposal"
version = "0.172.3" version = "0.173.0"
dependencies = [ dependencies = [
"either", "either",
"rustc-hash", "rustc-hash",
@ -4804,7 +4804,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_transforms_react" name = "swc_ecma_transforms_react"
version = "0.184.1" version = "0.185.0"
dependencies = [ dependencies = [
"base64", "base64",
"dashmap", "dashmap",
@ -4832,7 +4832,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_transforms_testing" name = "swc_ecma_transforms_testing"
version = "0.141.1" version = "0.142.0"
dependencies = [ dependencies = [
"ansi_term", "ansi_term",
"anyhow", "anyhow",
@ -4856,7 +4856,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_transforms_typescript" name = "swc_ecma_transforms_typescript"
version = "0.189.1" version = "0.190.0"
dependencies = [ dependencies = [
"criterion", "criterion",
"ryu-js", "ryu-js",
@ -4878,7 +4878,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_usage_analyzer" name = "swc_ecma_usage_analyzer"
version = "0.24.4" version = "0.25.0"
dependencies = [ dependencies = [
"indexmap 2.1.0", "indexmap 2.1.0",
"rustc-hash", "rustc-hash",
@ -4893,7 +4893,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_utils" name = "swc_ecma_utils"
version = "0.128.3" version = "0.129.0"
dependencies = [ dependencies = [
"indexmap 2.1.0", "indexmap 2.1.0",
"num_cpus", "num_cpus",
@ -4914,7 +4914,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_visit" name = "swc_ecma_visit"
version = "0.99.1" version = "0.100.0"
dependencies = [ dependencies = [
"num-bigint", "num-bigint",
"serde", "serde",
@ -4927,7 +4927,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecmascript" name = "swc_ecmascript"
version = "0.242.0" version = "0.243.0"
dependencies = [ dependencies = [
"swc_ecma_ast", "swc_ecma_ast",
"swc_ecma_codegen", "swc_ecma_codegen",
@ -4973,7 +4973,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_estree_compat" name = "swc_estree_compat"
version = "0.201.0" version = "0.202.0"
dependencies = [ dependencies = [
"ahash 0.8.8", "ahash 0.8.8",
"anyhow", "anyhow",
@ -5021,7 +5021,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html" name = "swc_html"
version = "0.140.0" version = "0.141.0"
dependencies = [ dependencies = [
"swc_html_ast", "swc_html_ast",
"swc_html_codegen", "swc_html_codegen",
@ -5071,7 +5071,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html_minifier" name = "swc_html_minifier"
version = "0.137.0" version = "0.138.0"
dependencies = [ dependencies = [
"criterion", "criterion",
"once_cell", "once_cell",
@ -5156,7 +5156,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_node_bundler" name = "swc_node_bundler"
version = "0.65.0" version = "0.66.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"dashmap", "dashmap",
@ -5222,7 +5222,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_plugin_proxy" name = "swc_plugin_proxy"
version = "0.42.1" version = "0.43.0"
dependencies = [ dependencies = [
"better_scoped_tls", "better_scoped_tls",
"rkyv", "rkyv",
@ -5234,7 +5234,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_plugin_runner" name = "swc_plugin_runner"
version = "0.107.2" version = "0.108.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"criterion", "criterion",

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "binding_macros" name = "binding_macros"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.67.0" version = "0.68.0"
[lib] [lib]
bench = false bench = false
@ -33,11 +33,11 @@ binding_wasm = [
[dependencies] [dependencies]
# Common deps for the SWC imports # Common deps for the SWC imports
swc = { optional = true, version = "0.276.0", path = "../swc" } swc = { optional = true, version = "0.277.0", path = "../swc" }
swc_common = { optional = true, version = "0.33.26", path = "../swc_common" } swc_common = { optional = true, version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { optional = true, version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.230.1", path = "../swc_ecma_transforms" } swc_ecma_transforms = { optional = true, version = "0.231.0", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { optional = true, version = "0.100.0", path = "../swc_ecma_visit" }
# Optional deps for the wasm binding macro # Optional deps for the wasm binding macro
anyhow = { workspace = true, optional = true } anyhow = { workspace = true, optional = true }

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "dbg-swc" name = "dbg-swc"
repository = { workspace = true } repository = { workspace = true }
version = "0.94.3" version = "0.95.0"
[[bin]] [[bin]]
bench = false bench = false
@ -31,13 +31,13 @@ swc_common = { version = "0.33.26", features = [
"concurrent", "concurrent",
"tty-emitter", "tty-emitter",
], path = "../swc_common" } ], path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" } swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.195.0", path = "../swc_ecma_minifier", features = [ swc_ecma_minifier = { version = "0.196.0", path = "../swc_ecma_minifier", features = [
"concurrent", "concurrent",
] } ] }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.20", path = "../swc_error_reporters" } swc_error_reporters = { version = "0.17.20", path = "../swc_error_reporters" }
swc_timer = { version = "0.21.22", path = "../swc_timer" } swc_timer = { version = "0.21.22", path = "../swc_timer" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "jsdoc" name = "jsdoc"
repository = { workspace = true } repository = { workspace = true }
version = "0.113.1" version = "0.114.0"
[lib] [lib]
bench = false bench = false
@ -26,6 +26,6 @@ swc_common = { version = "0.33.26", path = "../swc_common" }
anyhow = { workspace = true } anyhow = { workspace = true }
dashmap = { workspace = true } dashmap = { workspace = true }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
testing = { version = "0.35.24", path = "../testing" } testing = { version = "0.35.24", path = "../testing" }

View File

@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc" name = "swc"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.276.0" version = "0.277.0"
[lib] [lib]
bench = false bench = false
@ -74,21 +74,21 @@ swc_common = { version = "0.33.26", path = "../swc_common", features = [
"sourcemap", "sourcemap",
"parking_lot", "parking_lot",
] } ] }
swc_compiler_base = { version = "0.10.0", path = "../swc_compiler_base" } swc_compiler_base = { version = "0.11.0", path = "../swc_compiler_base" }
swc_config = { version = "0.1.13", path = "../swc_config" } swc_config = { version = "0.1.13", path = "../swc_config" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" } swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen" }
swc_ecma_ext_transforms = { version = "0.114.1", path = "../swc_ecma_ext_transforms" } swc_ecma_ext_transforms = { version = "0.115.0", path = "../swc_ecma_ext_transforms" }
swc_ecma_lints = { version = "0.93.1", path = "../swc_ecma_lints" } swc_ecma_lints = { version = "0.94.0", path = "../swc_ecma_lints" }
swc_ecma_loader = { version = "0.45.28", path = "../swc_ecma_loader", features = [ swc_ecma_loader = { version = "0.45.28", path = "../swc_ecma_loader", features = [
"cache", "cache",
"node", "node",
"tsc", "tsc",
] } ] }
swc_ecma_minifier = { version = "0.195.0", path = "../swc_ecma_minifier" } swc_ecma_minifier = { version = "0.196.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.207.1", path = "../swc_ecma_preset_env" } swc_ecma_preset_env = { version = "0.208.0", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.230.1", path = "../swc_ecma_transforms", features = [ swc_ecma_transforms = { version = "0.231.0", path = "../swc_ecma_transforms", features = [
"compat", "compat",
"module", "module",
"optimization", "optimization",
@ -96,15 +96,15 @@ swc_ecma_transforms = { version = "0.230.1", path = "../swc_ecma_transforms", fe
"react", "react",
"typescript", "typescript",
] } ] }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.164.1", path = "../swc_ecma_transforms_compat" } swc_ecma_transforms_compat = { version = "0.165.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.199.1", path = "../swc_ecma_transforms_optimization" } swc_ecma_transforms_optimization = { version = "0.200.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.20", path = "../swc_error_reporters" } swc_error_reporters = { version = "0.17.20", path = "../swc_error_reporters" }
swc_node_comments = { version = "0.20.20", path = "../swc_node_comments" } swc_node_comments = { version = "0.20.20", path = "../swc_node_comments" }
swc_plugin_proxy = { version = "0.42.1", path = "../swc_plugin_proxy", optional = true } swc_plugin_proxy = { version = "0.43.0", path = "../swc_plugin_proxy", optional = true }
swc_plugin_runner = { version = "0.107.1", path = "../swc_plugin_runner", optional = true, default-features = false } swc_plugin_runner = { version = "0.108.0", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_timer = { version = "0.21.22", path = "../swc_timer" } swc_timer = { version = "0.21.22", path = "../swc_timer" }
swc_transform_common = { version = "0.1.1", path = "../swc_transform_common" } swc_transform_common = { version = "0.1.1", path = "../swc_transform_common" }
swc_visit = { version = "0.5.14", path = "../swc_visit" } swc_visit = { version = "0.5.14", path = "../swc_visit" }
@ -131,10 +131,10 @@ criterion = { workspace = true }
rayon = { workspace = true } rayon = { workspace = true }
walkdir = { workspace = true } walkdir = { workspace = true }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast", features = [ swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast", features = [
"serde-impl", "serde-impl",
] } ] }
swc_ecma_lints = { version = "0.93.1", path = "../swc_ecma_lints", features = [ swc_ecma_lints = { version = "0.94.0", path = "../swc_ecma_lints", features = [
"non_critical_lints", "non_critical_lints",
] } ] }
swc_ecma_testing = { version = "0.22.23", path = "../swc_ecma_testing" } swc_ecma_testing = { version = "0.22.23", path = "../swc_ecma_testing" }

View File

@ -9,7 +9,7 @@ include = ["Cargo.toml", "build.rs", "src/**/*.rs", "src/**/*.js"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_bundler" name = "swc_bundler"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.228.0" version = "0.229.0"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -39,14 +39,14 @@ tracing = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" } swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "0.45.28", path = "../swc_ecma_loader" } swc_ecma_loader = { version = "0.45.28", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.199.1", path = "../swc_ecma_transforms_optimization" } swc_ecma_transforms_optimization = { version = "0.200.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.21.22", path = "../swc_fast_graph/" } swc_fast_graph = { version = "0.21.22", path = "../swc_fast_graph/" }
swc_graph_analyzer = { version = "0.22.23", path = "../swc_graph_analyzer/" } swc_graph_analyzer = { version = "0.22.23", path = "../swc_graph_analyzer/" }
@ -63,11 +63,11 @@ swc_ecma_loader = { version = "0.45.28", path = "../swc_ecma_loader", features =
"node", "node",
"cache", "cache",
] } ] }
swc_ecma_minifier = { version = "0.195.0", path = "../swc_ecma_minifier", features = [ swc_ecma_minifier = { version = "0.196.0", path = "../swc_ecma_minifier", features = [
"concurrent", "concurrent",
] } ] }
swc_ecma_transforms_proposal = { version = "0.172.2", path = "../swc_ecma_transforms_proposal" } swc_ecma_transforms_proposal = { version = "0.173.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.184.1", path = "../swc_ecma_transforms_react" } swc_ecma_transforms_react = { version = "0.185.0", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.189.1", path = "../swc_ecma_transforms_typescript" } swc_ecma_transforms_typescript = { version = "0.190.0", path = "../swc_ecma_transforms_typescript" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" } swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.24", path = "../testing" } testing = { version = "0.35.24", path = "../testing" }

View File

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

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_compiler_base" name = "swc_compiler_base"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.10.1" version = "0.11.0"
[features] [features]
node = ["napi", "napi-derive"] node = ["napi", "napi-derive"]
@ -27,11 +27,11 @@ swc_common = { version = "0.33.26", path = "../swc_common", features = [
"sourcemap", "sourcemap",
] } ] }
swc_config = { version = "0.1.13", path = "../swc_config" } swc_config = { version = "0.1.13", path = "../swc_config" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" } swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.195.0", path = "../swc_ecma_minifier" } swc_ecma_minifier = { version = "0.196.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_timer = { version = "0.21.22", path = "../swc_timer" } swc_timer = { version = "0.21.22", path = "../swc_timer" }
[dependencies.napi-derive] [dependencies.napi-derive]

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_core" name = "swc_core"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.93.4" version = "0.94.0"
[package.metadata.docs.rs] [package.metadata.docs.rs]
features = [ features = [
"allocator_node", "allocator_node",
@ -333,10 +333,10 @@ __visit = ["__ecma", "swc_ecma_visit"]
once_cell = { workspace = true, optional = true } once_cell = { workspace = true, optional = true }
# swc_* dependencies # swc_* dependencies
binding_macros = { optional = true, version = "0.67.0", path = "../binding_macros" } binding_macros = { optional = true, version = "0.68.0", path = "../binding_macros" }
swc = { optional = true, version = "0.276.0", path = "../swc" } swc = { optional = true, version = "0.277.0", path = "../swc" }
swc_atoms = { optional = true, version = "0.6.5", path = "../swc_atoms" } swc_atoms = { optional = true, version = "0.6.5", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "0.228.0", path = "../swc_bundler" } swc_bundler = { optional = true, version = "0.229.0", path = "../swc_bundler" }
swc_cached = { optional = true, version = "0.3.19", path = "../swc_cached" } swc_cached = { optional = true, version = "0.3.19", path = "../swc_cached" }
swc_common = { optional = true, version = "0.33.26", path = "../swc_common" } swc_common = { optional = true, version = "0.33.26", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.140.23", path = "../swc_css_ast" } swc_css_ast = { optional = true, version = "0.140.23", path = "../swc_css_ast" }
@ -348,36 +348,36 @@ swc_css_parser = { optional = true, version = "0.150.33", path
swc_css_prefixer = { optional = true, version = "0.153.37", path = "../swc_css_prefixer" } swc_css_prefixer = { optional = true, version = "0.153.37", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.137.23", path = "../swc_css_utils/" } swc_css_utils = { optional = true, version = "0.137.23", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.139.22", path = "../swc_css_visit" } swc_css_visit = { optional = true, version = "0.139.22", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { optional = true, version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { optional = true, version = "0.149.1", path = "../swc_ecma_codegen" } swc_ecma_codegen = { optional = true, version = "0.150.0", path = "../swc_ecma_codegen" }
swc_ecma_lints = { optional = true, version = "0.93.1", path = "../swc_ecma_lints" } swc_ecma_lints = { optional = true, version = "0.94.0", path = "../swc_ecma_lints" }
swc_ecma_loader = { optional = true, version = "0.45.28", path = "../swc_ecma_loader" } swc_ecma_loader = { optional = true, version = "0.45.28", path = "../swc_ecma_loader" }
swc_ecma_minifier = { optional = true, version = "0.195.0", path = "../swc_ecma_minifier" } swc_ecma_minifier = { optional = true, version = "0.196.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { optional = true, version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { optional = true, version = "0.207.1", path = "../swc_ecma_preset_env" } swc_ecma_preset_env = { optional = true, version = "0.208.0", path = "../swc_ecma_preset_env" }
swc_ecma_quote_macros = { optional = true, version = "0.55.1", path = "../swc_ecma_quote_macros" } swc_ecma_quote_macros = { optional = true, version = "0.56.0", path = "../swc_ecma_quote_macros" }
swc_ecma_transforms_base = { optional = true, version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { optional = true, version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { optional = true, version = "0.164.1", path = "../swc_ecma_transforms_compat" } swc_ecma_transforms_compat = { optional = true, version = "0.165.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { optional = true, version = "0.181.1", path = "../swc_ecma_transforms_module" } swc_ecma_transforms_module = { optional = true, version = "0.182.0", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_optimization = { optional = true, version = "0.199.1", path = "../swc_ecma_transforms_optimization" } swc_ecma_transforms_optimization = { optional = true, version = "0.200.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_proposal = { optional = true, version = "0.172.2", path = "../swc_ecma_transforms_proposal" } swc_ecma_transforms_proposal = { optional = true, version = "0.173.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { optional = true, version = "0.184.1", path = "../swc_ecma_transforms_react" } swc_ecma_transforms_react = { optional = true, version = "0.185.0", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_testing = { optional = true, version = "0.141.1", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_testing = { optional = true, version = "0.142.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_typescript = { optional = true, version = "0.189.1", path = "../swc_ecma_transforms_typescript" } swc_ecma_transforms_typescript = { optional = true, version = "0.190.0", path = "../swc_ecma_transforms_typescript" }
swc_ecma_usage_analyzer = { optional = true, version = "0.24.1", path = "../swc_ecma_usage_analyzer" } swc_ecma_usage_analyzer = { optional = true, version = "0.25.0", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { optional = true, version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { optional = true, version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { optional = true, version = "0.100.0", path = "../swc_ecma_visit" }
swc_malloc = { optional = true, version = "0.5.10", path = "../swc_malloc" } swc_malloc = { optional = true, version = "0.5.10", path = "../swc_malloc" }
swc_node_bundler = { optional = true, version = "0.65.0", path = "../swc_node_bundler" } swc_node_bundler = { optional = true, version = "0.66.0", path = "../swc_node_bundler" }
swc_nodejs_common = { optional = true, version = "0.0.8", path = "../swc_nodejs_common" } swc_nodejs_common = { optional = true, version = "0.0.8", path = "../swc_nodejs_common" }
swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" } swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" }
swc_plugin_macro = { optional = true, version = "0.9.16", path = "../swc_plugin_macro" } swc_plugin_macro = { optional = true, version = "0.9.16", path = "../swc_plugin_macro" }
swc_plugin_proxy = { optional = true, version = "0.42.1", path = "../swc_plugin_proxy" } swc_plugin_proxy = { optional = true, version = "0.43.0", path = "../swc_plugin_proxy" }
swc_trace_macro = { optional = true, version = "0.1.3", path = "../swc_trace_macro" } swc_trace_macro = { optional = true, version = "0.1.3", path = "../swc_trace_macro" }
swc_transform_common = { optional = true, version = "0.1.0", path = "../swc_transform_common" } swc_transform_common = { optional = true, version = "0.1.0", path = "../swc_transform_common" }
testing = { optional = true, version = "0.35.24", path = "../testing" } testing = { optional = true, version = "0.35.24", path = "../testing" }
# TODO: eventually swc_plugin_runner needs to remove default features # TODO: eventually swc_plugin_runner needs to remove default features
swc_plugin_runner = { optional = true, version = "0.107.1", path = "../swc_plugin_runner", default-features = false } swc_plugin_runner = { optional = true, version = "0.108.0", path = "../swc_plugin_runner", default-features = false }
[build-dependencies] [build-dependencies]
vergen = { workspace = true, features = ["cargo"] } vergen = { workspace = true, features = ["cargo"] }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_ast" name = "swc_ecma_ast"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.113.7" version = "0.114.0"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_codegen" name = "swc_ecma_codegen"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.149.3" version = "0.150.0"
[features] [features]
# This does not enable serde for ast nodes. # This does not enable serde for ast nodes.
@ -27,7 +27,7 @@ tracing = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_codegen_macros = { version = "0.7.6", path = "../swc_ecma_codegen_macros" } swc_ecma_codegen_macros = { version = "0.7.6", path = "../swc_ecma_codegen_macros" }
[dev-dependencies] [dev-dependencies]
@ -38,7 +38,7 @@ serde_json = { workspace = true }
swc_common = { version = "0.33.26", path = "../swc_common", features = [ swc_common = { version = "0.33.26", path = "../swc_common", features = [
"sourcemap", "sourcemap",
] } ] }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_testing = { version = "0.22.23", path = "../swc_ecma_testing" } swc_ecma_testing = { version = "0.22.23", path = "../swc_ecma_testing" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" } swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.24", path = "../testing" } testing = { version = "0.35.24", path = "../testing" }

View File

@ -7,20 +7,20 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_compat_bugfixes" name = "swc_ecma_compat_bugfixes"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.5.1" version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_compat_es2015 = { version = "0.5.1", path = "../swc_ecma_compat_es2015" } swc_ecma_compat_es2015 = { version = "0.6.0", path = "../swc_ecma_compat_es2015" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
tracing = { workspace = true } tracing = { workspace = true }
[dev-dependencies] [dev-dependencies]
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_testing = { version = "0.142.0", path = "../swc_ecma_transforms_testing" }

View File

@ -7,13 +7,13 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_compat_common" name = "swc_ecma_compat_common"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.5.1" version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_compat_es2015" name = "swc_ecma_compat_es2015"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.5.4" version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -24,16 +24,16 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_config = { version = "0.1.13", path = "../swc_config" } swc_config = { version = "0.1.13", path = "../swc_config" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "0.5.1", path = "../swc_ecma_compat_common" } swc_ecma_compat_common = { version = "0.6.0", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "0.127.1", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_classes = { version = "0.128.0", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" } swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
tracing = { workspace = true } tracing = { workspace = true }
[dev-dependencies] [dev-dependencies]
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_testing = { version = "0.142.0", path = "../swc_ecma_transforms_testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_compat_es2016" name = "swc_ecma_compat_es2016"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.5.1" version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -15,14 +15,14 @@ version = "0.5.1"
[dependencies] [dependencies]
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" } swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
tracing = { workspace = true } tracing = { workspace = true }
[dev-dependencies] [dev-dependencies]
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_testing = { version = "0.142.0", path = "../swc_ecma_transforms_testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_compat_es2017" name = "swc_ecma_compat_es2017"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.5.1" version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -18,13 +18,13 @@ tracing = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" } swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
[dev-dependencies] [dev-dependencies]
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_testing = { version = "0.142.0", path = "../swc_ecma_transforms_testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_compat_es2018" name = "swc_ecma_compat_es2018"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.5.1" version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -18,14 +18,14 @@ tracing = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "0.5.1", path = "../swc_ecma_compat_common" } swc_ecma_compat_common = { version = "0.6.0", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" } swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
[dev-dependencies] [dev-dependencies]
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_testing = { version = "0.142.0", path = "../swc_ecma_transforms_testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_compat_es2019" name = "swc_ecma_compat_es2019"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.5.1" version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -18,12 +18,12 @@ tracing = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
[dev-dependencies] [dev-dependencies]
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_testing = { version = "0.142.0", path = "../swc_ecma_transforms_testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_compat_es2020" name = "swc_ecma_compat_es2020"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.5.1" version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -16,14 +16,14 @@ version = "0.5.1"
serde = { workspace = true, features = ["derive"] } serde = { workspace = true, features = ["derive"] }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_compat_es2022 = { version = "0.5.1", path = "../swc_ecma_compat_es2022" } swc_ecma_compat_es2022 = { version = "0.6.0", path = "../swc_ecma_compat_es2022" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
tracing = { workspace = true } tracing = { workspace = true }
[dev-dependencies] [dev-dependencies]
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_testing = { version = "0.142.0", path = "../swc_ecma_transforms_testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_compat_es2021" name = "swc_ecma_compat_es2021"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.5.1" version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -17,8 +17,8 @@ tracing = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_compat_es2022" name = "swc_ecma_compat_es2022"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.5.2" version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -18,11 +18,11 @@ tracing = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "0.5.1", path = "../swc_ecma_compat_common" } swc_ecma_compat_common = { version = "0.6.0", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "0.127.1", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_classes = { version = "0.128.0", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" } swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_compat_es3" name = "swc_ecma_compat_es3"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.5.1" version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -16,12 +16,12 @@ version = "0.5.1"
tracing = { workspace = true } tracing = { workspace = true }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
[dev-dependencies] [dev-dependencies]
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_testing = { version = "0.142.0", path = "../swc_ecma_transforms_testing" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_ext_transforms" name = "swc_ecma_ext_transforms"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.114.2" version = "0.115.0"
[lib] [lib]
bench = false bench = false
@ -16,6 +16,6 @@ phf = { workspace = true, features = ["macros"] }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }

View File

@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_lints" name = "swc_ecma_lints"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.93.1" version = "0.94.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib] [lib]
@ -25,16 +25,16 @@ swc_common = { version = "0.33.26", path = "../swc_common", features = [
"concurrent", "concurrent",
] } ] }
swc_config = { version = "0.1.13", path = "../swc_config" } swc_config = { version = "0.1.13", path = "../swc_config" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast", features = [ swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast", features = [
"serde", "serde",
] } ] }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
[dev-dependencies] [dev-dependencies]
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" } swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
testing = { version = "0.35.24", path = "../testing" } testing = { version = "0.35.24", path = "../testing" }
[features] [features]

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/lists/*.json"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_minifier" name = "swc_ecma_minifier"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.195.2" version = "0.196.0"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -55,16 +55,16 @@ swc_common = { version = "0.33.26", path = "../swc_common" }
swc_config = { version = "0.1.13", path = "../swc_config", features = [ swc_config = { version = "0.1.13", path = "../swc_config", features = [
"sourcemap", "sourcemap",
] } ] }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast", features = [ swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast", features = [
"serde", "serde",
] } ] }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" } swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.199.1", path = "../swc_ecma_transforms_optimization" } swc_ecma_transforms_optimization = { version = "0.200.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_usage_analyzer = { version = "0.24.1", path = "../swc_ecma_usage_analyzer" } swc_ecma_usage_analyzer = { version = "0.25.0", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_timer = { version = "0.21.22", path = "../swc_timer" } swc_timer = { version = "0.21.22", path = "../swc_timer" }
[dev-dependencies] [dev-dependencies]

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "examples/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_parser" name = "swc_ecma_parser"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.144.3" version = "0.145.0"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -38,8 +38,8 @@ new_debug_unreachable = { workspace = true }
phf = { workspace = true, features = ["macros"] } phf = { workspace = true, features = ["macros"] }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit", optional = true } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit", optional = true }
[target.'cfg(not(any(target_arch = "wasm32", target_arch = "arm")))'.dependencies] [target.'cfg(not(any(target_arch = "wasm32", target_arch = "arm")))'.dependencies]
stacker = { version = "0.1.15", optional = true } stacker = { version = "0.1.15", optional = true }
@ -50,10 +50,10 @@ pretty_assertions = { workspace = true }
serde_json = { workspace = true } serde_json = { workspace = true }
walkdir = { workspace = true } walkdir = { workspace = true }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast", features = [ swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast", features = [
"serde-impl", "serde-impl",
] } ] }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" } swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.24", path = "../testing" } testing = { version = "0.35.24", path = "../testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_preset_env" name = "swc_ecma_preset_env"
repository = { workspace = true } repository = { workspace = true }
version = "0.207.1" version = "0.208.0"
[lib] [lib]
bench = false bench = false
@ -31,20 +31,20 @@ rustc-hash = { workspace = true }
string_enum = { version = "0.4.4", path = "../string_enum" } string_enum = { version = "0.4.4", path = "../string_enum" }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_transforms = { version = "0.230.1", path = "../swc_ecma_transforms", features = [ swc_ecma_transforms = { version = "0.231.0", path = "../swc_ecma_transforms", features = [
"compat", "compat",
"proposal", "proposal",
] } ] }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
[dev-dependencies] [dev-dependencies]
criterion = { workspace = true } criterion = { workspace = true }
pretty_assertions = { workspace = true } pretty_assertions = { workspace = true }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" } swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
testing = { version = "0.35.24", path = "../testing" } testing = { version = "0.35.24", path = "../testing" }
[[bench]] [[bench]]

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_quote" name = "swc_ecma_quote"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.60.1" version = "0.61.0"
[lib] [lib]
bench = false bench = false
@ -14,8 +14,8 @@ bench = false
[dependencies] [dependencies]
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_quote_macros = { version = "0.55.1", path = "../swc_ecma_quote_macros" } swc_ecma_quote_macros = { version = "0.56.0", path = "../swc_ecma_quote_macros" }
[dev-dependencies] [dev-dependencies]
testing = { version = "0.35.24", path = "../testing" } testing = { version = "0.35.24", path = "../testing" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_quote_macros" name = "swc_ecma_quote_macros"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.55.1" version = "0.56.0"
[lib] [lib]
bench = false bench = false
@ -20,6 +20,6 @@ syn = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_macros_common = { version = "0.3.11", path = "../swc_macros_common" } swc_macros_common = { version = "0.3.11", path = "../swc_macros_common" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_transforms" name = "swc_ecma_transforms"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.230.1" version = "0.231.0"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -33,23 +33,23 @@ typescript = ["swc_ecma_transforms_typescript"]
[dependencies] [dependencies]
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.164.1", path = "../swc_ecma_transforms_compat", optional = true } swc_ecma_transforms_compat = { version = "0.165.0", path = "../swc_ecma_transforms_compat", optional = true }
swc_ecma_transforms_module = { version = "0.181.1", path = "../swc_ecma_transforms_module", optional = true } swc_ecma_transforms_module = { version = "0.182.0", path = "../swc_ecma_transforms_module", optional = true }
swc_ecma_transforms_optimization = { version = "0.199.1", path = "../swc_ecma_transforms_optimization", optional = true } swc_ecma_transforms_optimization = { version = "0.200.0", path = "../swc_ecma_transforms_optimization", optional = true }
swc_ecma_transforms_proposal = { version = "0.172.2", path = "../swc_ecma_transforms_proposal", optional = true } swc_ecma_transforms_proposal = { version = "0.173.0", path = "../swc_ecma_transforms_proposal", optional = true }
swc_ecma_transforms_react = { version = "0.184.1", path = "../swc_ecma_transforms_react", optional = true } swc_ecma_transforms_react = { version = "0.185.0", path = "../swc_ecma_transforms_react", optional = true }
swc_ecma_transforms_typescript = { version = "0.189.1", path = "../swc_ecma_transforms_typescript", optional = true } swc_ecma_transforms_typescript = { version = "0.190.0", path = "../swc_ecma_transforms_typescript", optional = true }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
[dev-dependencies] [dev-dependencies]
pretty_assertions = { workspace = true } pretty_assertions = { workspace = true }
sourcemap = { workspace = true } sourcemap = { workspace = true }
tempfile = { workspace = true } tempfile = { workspace = true }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" } swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_testing = { version = "0.142.0", path = "../swc_ecma_transforms_testing" }
testing = { version = "0.35.24", path = "../testing" } testing = { version = "0.35.24", path = "../testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.js"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_transforms_base" name = "swc_ecma_transforms_base"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.138.4" version = "0.139.0"
[lib] [lib]
bench = false bench = false
@ -30,16 +30,16 @@ tracing = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
[dev-dependencies] [dev-dependencies]
criterion = { workspace = true } criterion = { workspace = true }
rayon = { workspace = true } rayon = { workspace = true }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" } swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen" }
swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" } swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" } swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.24", path = "../testing" } testing = { version = "0.35.24", path = "../testing" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_transforms_classes" name = "swc_ecma_transforms_classes"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.127.1" version = "0.128.0"
[lib] [lib]
bench = false bench = false
@ -14,7 +14,7 @@ bench = false
[dependencies] [dependencies]
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_transforms_compat" name = "swc_ecma_transforms_compat"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.164.1" version = "0.165.0"
[lib] [lib]
bench = false bench = false
@ -32,28 +32,28 @@ tracing = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_config = { version = "0.1.13", path = "../swc_config" } swc_config = { version = "0.1.13", path = "../swc_config" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_compat_bugfixes = { version = "0.5.1", path = "../swc_ecma_compat_bugfixes" } swc_ecma_compat_bugfixes = { version = "0.6.0", path = "../swc_ecma_compat_bugfixes" }
swc_ecma_compat_common = { version = "0.5.1", path = "../swc_ecma_compat_common" } swc_ecma_compat_common = { version = "0.6.0", path = "../swc_ecma_compat_common" }
swc_ecma_compat_es2015 = { version = "0.5.1", path = "../swc_ecma_compat_es2015" } swc_ecma_compat_es2015 = { version = "0.6.0", path = "../swc_ecma_compat_es2015" }
swc_ecma_compat_es2016 = { version = "0.5.1", path = "../swc_ecma_compat_es2016" } swc_ecma_compat_es2016 = { version = "0.6.0", path = "../swc_ecma_compat_es2016" }
swc_ecma_compat_es2017 = { version = "0.5.1", path = "../swc_ecma_compat_es2017" } swc_ecma_compat_es2017 = { version = "0.6.0", path = "../swc_ecma_compat_es2017" }
swc_ecma_compat_es2018 = { version = "0.5.1", path = "../swc_ecma_compat_es2018" } swc_ecma_compat_es2018 = { version = "0.6.0", path = "../swc_ecma_compat_es2018" }
swc_ecma_compat_es2019 = { version = "0.5.1", path = "../swc_ecma_compat_es2019" } swc_ecma_compat_es2019 = { version = "0.6.0", path = "../swc_ecma_compat_es2019" }
swc_ecma_compat_es2020 = { version = "0.5.1", path = "../swc_ecma_compat_es2020" } swc_ecma_compat_es2020 = { version = "0.6.0", path = "../swc_ecma_compat_es2020" }
swc_ecma_compat_es2021 = { version = "0.5.1", path = "../swc_ecma_compat_es2021" } swc_ecma_compat_es2021 = { version = "0.6.0", path = "../swc_ecma_compat_es2021" }
swc_ecma_compat_es2022 = { version = "0.5.1", path = "../swc_ecma_compat_es2022" } swc_ecma_compat_es2022 = { version = "0.6.0", path = "../swc_ecma_compat_es2022" }
swc_ecma_compat_es3 = { version = "0.5.1", path = "../swc_ecma_compat_es3" } swc_ecma_compat_es3 = { version = "0.6.0", path = "../swc_ecma_compat_es3" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "0.127.1", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_classes = { version = "0.128.0", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" } swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
[dev-dependencies] [dev-dependencies]
serde_json = { workspace = true } serde_json = { workspace = true }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_testing = { version = "0.142.0", path = "../swc_ecma_transforms_testing" }
testing = { version = "0.35.24", path = "../testing" } testing = { version = "0.35.24", path = "../testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_transforms_module" name = "swc_ecma_transforms_module"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.181.2" version = "0.182.0"
[lib] [lib]
bench = false bench = false
@ -27,14 +27,14 @@ tracing = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_cached = { version = "0.3.19", path = "../swc_cached" } swc_cached = { version = "0.3.19", path = "../swc_cached" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_loader = { version = "0.45.28", path = "../swc_ecma_loader", features = [ swc_ecma_loader = { version = "0.45.28", path = "../swc_ecma_loader", features = [
"node", "node",
] } ] }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
[dev-dependencies] [dev-dependencies]
indexmap = { workspace = true, features = ["serde"] } indexmap = { workspace = true, features = ["serde"] }
@ -44,6 +44,6 @@ swc_ecma_loader = { version = "0.45.28", path = "../swc_ecma_loader", features =
"node", "node",
"tsc", "tsc",
] } ] }
swc_ecma_transforms_compat = { version = "0.164.1", path = "../swc_ecma_transforms_compat" } swc_ecma_transforms_compat = { version = "0.165.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_testing = { version = "0.142.0", path = "../swc_ecma_transforms_testing" }
testing = { version = "0.35.24", path = "../testing/" } testing = { version = "0.35.24", path = "../testing/" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_transforms_optimization" name = "swc_ecma_transforms_optimization"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.199.2" version = "0.200.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib] [lib]
@ -33,19 +33,19 @@ tracing = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" } swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.21.22", path = "../swc_fast_graph" } swc_fast_graph = { version = "0.21.22", path = "../swc_fast_graph" }
[dev-dependencies] [dev-dependencies]
swc_ecma_transforms_compat = { version = "0.164.1", path = "../swc_ecma_transforms_compat" } swc_ecma_transforms_compat = { version = "0.165.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { version = "0.181.1", path = "../swc_ecma_transforms_module" } swc_ecma_transforms_module = { version = "0.182.0", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_proposal = { version = "0.172.2", path = "../swc_ecma_transforms_proposal" } swc_ecma_transforms_proposal = { version = "0.173.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.184.1", path = "../swc_ecma_transforms_react" } swc_ecma_transforms_react = { version = "0.185.0", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_testing = { version = "0.142.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_typescript = { version = "0.189.1", path = "../swc_ecma_transforms_typescript" } swc_ecma_transforms_typescript = { version = "0.190.0", path = "../swc_ecma_transforms_typescript" }
testing = { version = "0.35.24", path = "../testing" } testing = { version = "0.35.24", path = "../testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_transforms_proposal" name = "swc_ecma_transforms_proposal"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.172.3" version = "0.173.0"
[lib] [lib]
bench = false bench = false
@ -24,19 +24,19 @@ smallvec = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_loader = { version = "0.45.28", path = "../swc_ecma_loader", optional = true } swc_ecma_loader = { version = "0.45.28", path = "../swc_ecma_loader", optional = true }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "0.127.1", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_classes = { version = "0.128.0", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" } swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
[dev-dependencies] [dev-dependencies]
serde_json = { workspace = true } serde_json = { workspace = true }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" } swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_compat = { version = "0.164.1", path = "../swc_ecma_transforms_compat" } swc_ecma_transforms_compat = { version = "0.165.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_testing = { version = "0.142.0", path = "../swc_ecma_transforms_testing" }
testing = { version = "0.35.24", path = "../testing" } testing = { version = "0.35.24", path = "../testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_transforms_react" name = "swc_ecma_transforms_react"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.184.1" version = "0.185.0"
[lib] [lib]
bench = false bench = false
@ -30,16 +30,16 @@ string_enum = { version = "0.4.4", path = "../string_enum" }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_config = { version = "0.1.13", path = "../swc_config" } swc_config = { version = "0.1.13", path = "../swc_config" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" } swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
[dev-dependencies] [dev-dependencies]
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen/" } swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen/" }
swc_ecma_transforms_compat = { version = "0.164.1", path = "../swc_ecma_transforms_compat/" } swc_ecma_transforms_compat = { version = "0.165.0", path = "../swc_ecma_transforms_compat/" }
swc_ecma_transforms_module = { version = "0.181.1", path = "../swc_ecma_transforms_module" } swc_ecma_transforms_module = { version = "0.182.0", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_testing = { version = "0.142.0", path = "../swc_ecma_transforms_testing" }
testing = { version = "0.35.24", path = "../testing" } testing = { version = "0.35.24", path = "../testing" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_transforms_testing" name = "swc_ecma_transforms_testing"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.141.1" version = "0.142.0"
[lib] [lib]
bench = false bench = false
@ -25,11 +25,11 @@ tempfile = { workspace = true }
swc_common = { version = "0.33.26", path = "../swc_common", features = [ swc_common = { version = "0.33.26", path = "../swc_common", features = [
"sourcemap", "sourcemap",
] } ] }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" } swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_testing = { version = "0.22.23", path = "../swc_ecma_testing" } swc_ecma_testing = { version = "0.22.23", path = "../swc_ecma_testing" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
testing = { version = "0.35.24", path = "../testing" } testing = { version = "0.35.24", path = "../testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_transforms_typescript" name = "swc_ecma_transforms_typescript"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.189.1" version = "0.190.0"
[lib] [lib]
bench = false bench = false
@ -18,20 +18,20 @@ serde = { workspace = true, features = ["derive"] }
ryu-js = { workspace = true } ryu-js = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_react = { version = "0.184.1", path = "../swc_ecma_transforms_react" } swc_ecma_transforms_react = { version = "0.185.0", path = "../swc_ecma_transforms_react" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
[dev-dependencies] [dev-dependencies]
criterion = { workspace = true } criterion = { workspace = true }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" } swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_compat = { version = "0.164.1", path = "../swc_ecma_transforms_compat" } swc_ecma_transforms_compat = { version = "0.165.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_proposal = { version = "0.172.2", path = "../swc_ecma_transforms_proposal" } swc_ecma_transforms_proposal = { version = "0.173.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_testing = { version = "0.142.0", path = "../swc_ecma_transforms_testing" }
testing = { version = "0.35.24", path = "../testing" } testing = { version = "0.35.24", path = "../testing" }
[[bench]] [[bench]]

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_usage_analyzer" name = "swc_ecma_usage_analyzer"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.24.4" version = "0.25.0"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -28,7 +28,7 @@ tracing = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_timer = { version = "0.21.22", path = "../swc_timer" } swc_timer = { version = "0.21.22", path = "../swc_timer" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_utils" name = "swc_ecma_utils"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.128.3" version = "0.129.0"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -31,12 +31,12 @@ unicode-id = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
[target.'cfg(not(any(target_arch = "wasm32", target_arch = "arm")))'.dependencies] [target.'cfg(not(any(target_arch = "wasm32", target_arch = "arm")))'.dependencies]
stacker = { version = "0.1.15", optional = true } stacker = { version = "0.1.15", optional = true }
[dev-dependencies] [dev-dependencies]
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
testing = { version = "0.35.24", path = "../testing" } testing = { version = "0.35.24", path = "../testing" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_visit" name = "swc_ecma_visit"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.99.1" version = "0.100.0"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -27,5 +27,5 @@ tracing = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_visit = { version = "0.5.14", path = "../swc_visit" } swc_visit = { version = "0.5.14", path = "../swc_visit" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecmascript" name = "swc_ecmascript"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.242.0" version = "0.243.0"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -38,14 +38,14 @@ react = ["swc_ecma_transforms/react"]
typescript = ["typescript-parser", "swc_ecma_transforms/typescript"] typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
[dependencies] [dependencies]
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen", optional = true } swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen", optional = true }
swc_ecma_minifier = { version = "0.195.0", path = "../swc_ecma_minifier", optional = true } swc_ecma_minifier = { version = "0.196.0", path = "../swc_ecma_minifier", optional = true }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser", optional = true, default-features = false } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser", optional = true, default-features = false }
swc_ecma_preset_env = { version = "0.207.1", path = "../swc_ecma_preset_env", optional = true } swc_ecma_preset_env = { version = "0.208.0", path = "../swc_ecma_preset_env", optional = true }
swc_ecma_quote = { version = "0.60.1", path = "../swc_ecma_quote", optional = true } swc_ecma_quote = { version = "0.61.0", path = "../swc_ecma_quote", optional = true }
swc_ecma_transforms = { version = "0.230.1", path = "../swc_ecma_transforms", optional = true } swc_ecma_transforms = { version = "0.231.0", path = "../swc_ecma_transforms", optional = true }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils", optional = true } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils", optional = true }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit", optional = true } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit", optional = true }
[dev-dependencies] [dev-dependencies]

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_estree_compat" name = "swc_estree_compat"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.201.0" version = "0.202.0"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -29,10 +29,10 @@ swc_common = { version = "0.33.26", path = "../swc_common", features = [
"sourcemap", "sourcemap",
"tty-emitter", "tty-emitter",
] } ] }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_estree_ast = { version = "0.23.21", path = "../swc_estree_ast" } swc_estree_ast = { version = "0.23.21", path = "../swc_estree_ast" }
swc_node_comments = { version = "0.20.20", path = "../swc_node_comments/" } swc_node_comments = { version = "0.20.20", path = "../swc_node_comments/" }
@ -40,10 +40,10 @@ swc_node_comments = { version = "0.20.20", path = "../swc_node_comments/" }
criterion = { workspace = true } criterion = { workspace = true }
pretty_assertions = { workspace = true } pretty_assertions = { workspace = true }
swc = { version = "0.276.0", path = "../swc" } swc = { version = "0.277.0", path = "../swc" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "0.230.1", path = "../swc_ecma_transforms/" } swc_ecma_transforms = { version = "0.231.0", path = "../swc_ecma_transforms/" }
testing = { version = "0.35.24", path = "../testing" } testing = { version = "0.35.24", path = "../testing" }
walkdir = { workspace = true } walkdir = { workspace = true }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_html" name = "swc_html"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.140.0" version = "0.141.0"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies] [dependencies]
swc_html_ast = {version = "0.33.21", path = "../swc_html_ast"} swc_html_ast = {version = "0.33.21", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.42.28", path = "../swc_html_codegen"} swc_html_codegen = {version = "0.42.28", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.137.0", path = "../swc_html_minifier", optional = true} swc_html_minifier = {version = "0.138.0", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.39.27", path = "../swc_html_parser"} swc_html_parser = {version = "0.39.27", path = "../swc_html_parser"}
swc_html_visit = {version = "0.33.20", path = "../swc_html_visit"} swc_html_visit = {version = "0.33.20", path = "../swc_html_visit"}

View File

@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "data/**/*.json"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_html_minifier" name = "swc_html_minifier"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.137.0" version = "0.138.0"
[lib] [lib]
bench = false bench = false
@ -27,16 +27,16 @@ swc_css_ast = { version = "0.140.23", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.35", path = "../swc_css_codegen" } swc_css_codegen = { version = "0.151.35", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.116.34", path = "../swc_css_minifier" } swc_css_minifier = { version = "0.116.34", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.150.33", path = "../swc_css_parser" } swc_css_parser = { version = "0.150.33", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen", features = [ swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen", features = [
"serde-impl", "serde-impl",
] } ] }
swc_ecma_minifier = { version = "0.195.0", path = "../swc_ecma_minifier", features = [ swc_ecma_minifier = { version = "0.196.0", path = "../swc_ecma_minifier", features = [
"extra-serde", "extra-serde",
] } ] }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_html_ast = { version = "0.33.21", path = "../swc_html_ast" } swc_html_ast = { version = "0.33.21", path = "../swc_html_ast" }
swc_html_codegen = { version = "0.42.28", path = "../swc_html_codegen" } swc_html_codegen = { version = "0.42.28", path = "../swc_html_codegen" }
swc_html_parser = { version = "0.39.27", path = "../swc_html_parser" } swc_html_parser = { version = "0.39.27", path = "../swc_html_parser" }

View File

@ -7,7 +7,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_node_bundler" name = "swc_node_bundler"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.65.0" version = "0.66.0"
[lib] [lib]
bench = false bench = false
@ -29,21 +29,21 @@ serde_json = { workspace = true }
tracing = { workspace = true } tracing = { workspace = true }
string_enum = { version = "0.4.4", path = "../string_enum" } string_enum = { version = "0.4.4", path = "../string_enum" }
swc = { version = "0.276.0", path = "../swc" } swc = { version = "0.277.0", path = "../swc" }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_bundler = { version = "0.228.0", path = "../swc_bundler", features = [ swc_bundler = { version = "0.229.0", path = "../swc_bundler", features = [
"concurrent", "concurrent",
] } ] }
swc_common = { version = "0.33.26", path = "../swc_common", features = [ swc_common = { version = "0.33.26", path = "../swc_common", features = [
"concurrent", "concurrent",
] } ] }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" } swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "0.45.28", path = "../swc_ecma_loader" } swc_ecma_loader = { version = "0.45.28", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "0.230.1", path = "../swc_ecma_transforms" } swc_ecma_transforms = { version = "0.231.0", path = "../swc_ecma_transforms" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" } swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
[dev-dependencies] [dev-dependencies]

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_plugin_proxy" name = "swc_plugin_proxy"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.42.1" version = "0.43.0"
[lib] [lib]
bench = false bench = false
@ -30,5 +30,5 @@ tracing = { workspace = true }
better_scoped_tls = { version = "0.1.1", path = "../better_scoped_tls" } better_scoped_tls = { version = "0.1.1", path = "../better_scoped_tls" }
swc_common = { version = "0.33.26", path = "../swc_common" } swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_plugin_runner" name = "swc_plugin_runner"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.107.2" version = "0.108.0"
[lib] [lib]
bench = false bench = false
@ -63,8 +63,8 @@ swc_common = { version = "0.33.26", path = "../swc_common", features = [
"concurrent", "concurrent",
] } ] }
swc_css_ast = { version = "0.140.23", path = "../swc_css_ast", optional = true } swc_css_ast = { version = "0.140.23", path = "../swc_css_ast", optional = true }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast", optional = true } swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast", optional = true }
swc_plugin_proxy = { version = "0.42.1", path = "../swc_plugin_proxy" } swc_plugin_proxy = { version = "0.43.0", path = "../swc_plugin_proxy" }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
wasmer-cache = { version = "4.0.0", optional = true } wasmer-cache = { version = "4.0.0", optional = true }
@ -78,12 +78,12 @@ swc_css_ast = { version = "0.140.23", path = "../swc_css_ast", features = [
"rkyv-impl", "rkyv-impl",
] } ] }
swc_css_parser = { version = "0.150.33", path = "../swc_css_parser" } swc_css_parser = { version = "0.150.33", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast", features = [ swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast", features = [
"rkyv-impl", "rkyv-impl",
] } ] }
swc_ecma_loader = { version = "0.45.28", path = "../swc_ecma_loader" } swc_ecma_loader = { version = "0.45.28", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" } swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.24", path = "../testing" } testing = { version = "0.35.24", path = "../testing" }
tokio = { workspace = true, features = ["rt"] } tokio = { workspace = true, features = ["rt"] }