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
## [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
@ -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/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))

96
Cargo.lock generated
View File

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

View File

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

View File

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

View File

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

View File

@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc"
repository = "https://github.com/swc-project/swc.git"
version = "0.276.0"
version = "0.277.0"
[lib]
bench = false
@ -74,21 +74,21 @@ swc_common = { version = "0.33.26", path = "../swc_common", features = [
"sourcemap",
"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_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" }
swc_ecma_ext_transforms = { version = "0.114.1", path = "../swc_ecma_ext_transforms" }
swc_ecma_lints = { version = "0.93.1", path = "../swc_ecma_lints" }
swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen" }
swc_ecma_ext_transforms = { version = "0.115.0", path = "../swc_ecma_ext_transforms" }
swc_ecma_lints = { version = "0.94.0", path = "../swc_ecma_lints" }
swc_ecma_loader = { version = "0.45.28", path = "../swc_ecma_loader", features = [
"cache",
"node",
"tsc",
] }
swc_ecma_minifier = { version = "0.195.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.207.1", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.230.1", path = "../swc_ecma_transforms", features = [
swc_ecma_minifier = { version = "0.196.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.208.0", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.231.0", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
@ -96,15 +96,15 @@ swc_ecma_transforms = { version = "0.230.1", path = "../swc_ecma_transforms", fe
"react",
"typescript",
] }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.164.1", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.199.1", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.165.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.200.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.20", path = "../swc_error_reporters" }
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_runner = { version = "0.107.1", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_plugin_proxy = { version = "0.43.0", path = "../swc_plugin_proxy", optional = true }
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_transform_common = { version = "0.1.1", path = "../swc_transform_common" }
swc_visit = { version = "0.5.14", path = "../swc_visit" }
@ -131,10 +131,10 @@ criterion = { workspace = true }
rayon = { 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",
] }
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",
] }
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"
name = "swc_bundler"
repository = "https://github.com/swc-project/swc.git"
version = "0.228.0"
version = "0.229.0"
[package.metadata.docs.rs]
all-features = true
@ -39,14 +39,14 @@ tracing = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" }
swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "0.45.28", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.199.1", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.200.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.21.22", path = "../swc_fast_graph/" }
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",
"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",
] }
swc_ecma_transforms_proposal = { version = "0.172.2", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.184.1", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.189.1", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_proposal = { version = "0.173.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.185.0", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.190.0", path = "../swc_ecma_transforms_typescript" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.24", path = "../testing" }

View File

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

View File

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

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_core"
repository = "https://github.com/swc-project/swc.git"
version = "0.93.4"
version = "0.94.0"
[package.metadata.docs.rs]
features = [
"allocator_node",
@ -333,10 +333,10 @@ __visit = ["__ecma", "swc_ecma_visit"]
once_cell = { workspace = true, optional = true }
# swc_* dependencies
binding_macros = { optional = true, version = "0.67.0", path = "../binding_macros" }
swc = { optional = true, version = "0.276.0", path = "../swc" }
binding_macros = { optional = true, version = "0.68.0", path = "../binding_macros" }
swc = { optional = true, version = "0.277.0", path = "../swc" }
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_common = { optional = true, version = "0.33.26", path = "../swc_common" }
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_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_ecma_ast = { optional = true, version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { optional = true, version = "0.149.1", path = "../swc_ecma_codegen" }
swc_ecma_lints = { optional = true, version = "0.93.1", path = "../swc_ecma_lints" }
swc_ecma_ast = { optional = true, version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { optional = true, version = "0.150.0", path = "../swc_ecma_codegen" }
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_minifier = { optional = true, version = "0.195.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { optional = true, version = "0.207.1", path = "../swc_ecma_preset_env" }
swc_ecma_quote_macros = { optional = true, version = "0.55.1", path = "../swc_ecma_quote_macros" }
swc_ecma_transforms_base = { optional = true, version = "0.138.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { optional = true, version = "0.164.1", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { optional = true, version = "0.181.1", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_optimization = { optional = true, version = "0.199.1", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_proposal = { optional = true, version = "0.172.2", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { optional = true, version = "0.184.1", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_testing = { optional = true, version = "0.141.1", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_typescript = { optional = true, version = "0.189.1", path = "../swc_ecma_transforms_typescript" }
swc_ecma_usage_analyzer = { optional = true, version = "0.24.1", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { optional = true, version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_minifier = { optional = true, version = "0.196.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { optional = true, version = "0.208.0", path = "../swc_ecma_preset_env" }
swc_ecma_quote_macros = { optional = true, version = "0.56.0", path = "../swc_ecma_quote_macros" }
swc_ecma_transforms_base = { optional = true, version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { optional = true, version = "0.165.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { optional = true, version = "0.182.0", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_optimization = { optional = true, version = "0.200.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_proposal = { optional = true, version = "0.173.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { optional = true, version = "0.185.0", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_testing = { optional = true, version = "0.142.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_typescript = { optional = true, version = "0.190.0", path = "../swc_ecma_transforms_typescript" }
swc_ecma_usage_analyzer = { optional = true, version = "0.25.0", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { optional = true, version = "0.129.0", path = "../swc_ecma_utils" }
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_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_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_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_transform_common = { optional = true, version = "0.1.0", path = "../swc_transform_common" }
testing = { optional = true, version = "0.35.24", path = "../testing" }
# 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]
vergen = { workspace = true, features = ["cargo"] }

View File

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

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_codegen"
repository = "https://github.com/swc-project/swc.git"
version = "0.149.3"
version = "0.150.0"
[features]
# 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_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" }
[dev-dependencies]
@ -38,7 +38,7 @@ serde_json = { workspace = true }
swc_common = { version = "0.33.26", path = "../swc_common", features = [
"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_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.24", path = "../testing" }

View File

@ -7,20 +7,20 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_compat_bugfixes"
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
[dependencies]
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_compat_es2015 = { version = "0.5.1", path = "../swc_ecma_compat_es2015" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_compat_es2015 = { version = "0.6.0", path = "../swc_ecma_compat_es2015" }
swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
tracing = { workspace = true }
[dev-dependencies]
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" }
swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
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"
name = "swc_ecma_compat_common"
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
[dependencies]
swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
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"
name = "swc_ecma_compat_es2015"
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
@ -24,16 +24,16 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" }
swc_config = { version = "0.1.13", path = "../swc_config" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "0.5.1", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "0.127.1", path = "../swc_ecma_transforms_classes" }
swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "0.6.0", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
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_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
tracing = { workspace = true }
[dev-dependencies]
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" }
swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
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"
name = "swc_ecma_compat_es2016"
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
@ -15,14 +15,14 @@ version = "0.5.1"
[dependencies]
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" }
swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
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_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
tracing = { workspace = true }
[dev-dependencies]
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" }
swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
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"
name = "swc_ecma_compat_es2017"
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
@ -18,13 +18,13 @@ tracing = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" }
swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
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_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
[dev-dependencies]
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" }
swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
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"
name = "swc_ecma_compat_es2018"
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
@ -18,14 +18,14 @@ tracing = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "0.5.1", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" }
swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "0.6.0", path = "../swc_ecma_compat_common" }
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_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
[dev-dependencies]
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" }
swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
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"
name = "swc_ecma_compat_es2019"
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
@ -18,12 +18,12 @@ tracing = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
[dev-dependencies]
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" }
swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
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"
name = "swc_ecma_compat_es2020"
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
@ -16,14 +16,14 @@ version = "0.5.1"
serde = { workspace = true, features = ["derive"] }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_compat_es2022 = { version = "0.5.1", path = "../swc_ecma_compat_es2022" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_compat_es2022 = { version = "0.6.0", path = "../swc_ecma_compat_es2022" }
swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
tracing = { workspace = true }
[dev-dependencies]
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" }
swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
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"
name = "swc_ecma_compat_es2021"
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
@ -17,8 +17,8 @@ tracing = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
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"
name = "swc_ecma_compat_es2022"
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
@ -18,11 +18,11 @@ tracing = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "0.5.1", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "0.127.1", path = "../swc_ecma_transforms_classes" }
swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "0.6.0", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
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_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
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"
name = "swc_ecma_compat_es3"
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
@ -16,12 +16,12 @@ version = "0.5.1"
tracing = { workspace = true }
swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
[dev-dependencies]
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" }
swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
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"
name = "swc_ecma_ext_transforms"
repository = "https://github.com/swc-project/swc.git"
version = "0.114.2"
version = "0.115.0"
[lib]
bench = false
@ -16,6 +16,6 @@ phf = { workspace = true, features = ["macros"] }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
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"
name = "swc_ecma_lints"
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
[lib]
@ -25,16 +25,16 @@ swc_common = { version = "0.33.26", path = "../swc_common", features = [
"concurrent",
] }
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",
] }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
[dev-dependencies]
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" }
swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
testing = { version = "0.35.24", path = "../testing" }
[features]

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/lists/*.json"]
license = "Apache-2.0"
name = "swc_ecma_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.195.2"
version = "0.196.0"
[package.metadata.docs.rs]
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 = [
"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",
] }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.199.1", path = "../swc_ecma_transforms_optimization" }
swc_ecma_usage_analyzer = { version = "0.24.1", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.200.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_usage_analyzer = { version = "0.25.0", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_timer = { version = "0.21.22", path = "../swc_timer" }
[dev-dependencies]

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "examples/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_parser"
repository = "https://github.com/swc-project/swc.git"
version = "0.144.3"
version = "0.145.0"
[package.metadata.docs.rs]
all-features = true
@ -38,8 +38,8 @@ new_debug_unreachable = { workspace = true }
phf = { workspace = true, features = ["macros"] }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit", optional = true }
swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit", optional = true }
[target.'cfg(not(any(target_arch = "wasm32", target_arch = "arm")))'.dependencies]
stacker = { version = "0.1.15", optional = true }
@ -50,10 +50,10 @@ pretty_assertions = { workspace = true }
serde_json = { 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",
] }
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" }
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"
name = "swc_ecma_preset_env"
repository = { workspace = true }
version = "0.207.1"
version = "0.208.0"
[lib]
bench = false
@ -31,20 +31,20 @@ rustc-hash = { workspace = true }
string_enum = { version = "0.4.4", path = "../string_enum" }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_transforms = { version = "0.230.1", path = "../swc_ecma_transforms", features = [
swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_transforms = { version = "0.231.0", path = "../swc_ecma_transforms", features = [
"compat",
"proposal",
] }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
[dev-dependencies]
criterion = { workspace = true }
pretty_assertions = { workspace = true }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
testing = { version = "0.35.24", path = "../testing" }
[[bench]]

View File

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

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_quote_macros"
repository = "https://github.com/swc-project/swc.git"
version = "0.55.1"
version = "0.56.0"
[lib]
bench = false
@ -20,6 +20,6 @@ syn = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
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"
name = "swc_ecma_transforms"
repository = "https://github.com/swc-project/swc.git"
version = "0.230.1"
version = "0.231.0"
[package.metadata.docs.rs]
all-features = true
@ -33,23 +33,23 @@ typescript = ["swc_ecma_transforms_typescript"]
[dependencies]
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.164.1", 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_optimization = { version = "0.199.1", 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_react = { version = "0.184.1", path = "../swc_ecma_transforms_react", optional = true }
swc_ecma_transforms_typescript = { version = "0.189.1", path = "../swc_ecma_transforms_typescript", optional = true }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.165.0", path = "../swc_ecma_transforms_compat", optional = true }
swc_ecma_transforms_module = { version = "0.182.0", path = "../swc_ecma_transforms_module", optional = true }
swc_ecma_transforms_optimization = { version = "0.200.0", path = "../swc_ecma_transforms_optimization", optional = true }
swc_ecma_transforms_proposal = { version = "0.173.0", path = "../swc_ecma_transforms_proposal", optional = true }
swc_ecma_transforms_react = { version = "0.185.0", path = "../swc_ecma_transforms_react", optional = true }
swc_ecma_transforms_typescript = { version = "0.190.0", path = "../swc_ecma_transforms_typescript", optional = true }
swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
[dev-dependencies]
pretty_assertions = { workspace = true }
sourcemap = { workspace = true }
tempfile = { workspace = true }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" }
swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.142.0", path = "../swc_ecma_transforms_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"
name = "swc_ecma_transforms_base"
repository = "https://github.com/swc-project/swc.git"
version = "0.138.4"
version = "0.139.0"
[lib]
bench = false
@ -30,16 +30,16 @@ tracing = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.26", path = "../swc_common" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
[dev-dependencies]
criterion = { 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_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.24", path = "../testing" }

View File

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

View File

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

View File

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

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_transforms_proposal"
repository = "https://github.com/swc-project/swc.git"
version = "0.172.3"
version = "0.173.0"
[lib]
bench = false
@ -24,19 +24,19 @@ smallvec = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
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_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "0.127.1", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
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_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
[dev-dependencies]
serde_json = { workspace = true }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_compat = { version = "0.164.1", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" }
swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_compat = { version = "0.165.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_testing = { version = "0.142.0", path = "../swc_ecma_transforms_testing" }
testing = { version = "0.35.24", path = "../testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_transforms_react"
repository = "https://github.com/swc-project/swc.git"
version = "0.184.1"
version = "0.185.0"
[lib]
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_common = { version = "0.33.26", path = "../swc_common" }
swc_config = { version = "0.1.13", path = "../swc_config" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" }
swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
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_utils = { version = "0.128.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_utils = { version = "0.129.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
[dev-dependencies]
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen/" }
swc_ecma_transforms_compat = { version = "0.164.1", path = "../swc_ecma_transforms_compat/" }
swc_ecma_transforms_module = { version = "0.181.1", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_testing = { version = "0.141.1", path = "../swc_ecma_transforms_testing" }
swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen/" }
swc_ecma_transforms_compat = { version = "0.165.0", path = "../swc_ecma_transforms_compat/" }
swc_ecma_transforms_module = { version = "0.182.0", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_testing = { version = "0.142.0", path = "../swc_ecma_transforms_testing" }
testing = { version = "0.35.24", path = "../testing" }

View File

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

View File

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

View File

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

View File

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

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_visit"
repository = "https://github.com/swc-project/swc.git"
version = "0.99.1"
version = "0.100.0"
[package.metadata.docs.rs]
all-features = true
@ -27,5 +27,5 @@ tracing = { workspace = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
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" }

View File

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

View File

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

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_html"
repository = "https://github.com/swc-project/swc.git"
version = "0.140.0"
version = "0.141.0"
[package.metadata.docs.rs]
all-features = true
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies]
swc_html_ast = {version = "0.33.21", path = "../swc_html_ast"}
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_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"
name = "swc_html_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.137.0"
version = "0.138.0"
[lib]
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_minifier = { version = "0.116.34", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.150.33", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.113.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.149.1", path = "../swc_ecma_codegen", features = [
swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.150.0", path = "../swc_ecma_codegen", features = [
"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",
] }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.138.1", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.139.0", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_html_ast = { version = "0.33.21", path = "../swc_html_ast" }
swc_html_codegen = { version = "0.42.28", path = "../swc_html_codegen" }
swc_html_parser = { version = "0.39.27", path = "../swc_html_parser" }

View File

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

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_plugin_proxy"
repository = "https://github.com/swc-project/swc.git"
version = "0.42.1"
version = "0.43.0"
[lib]
bench = false
@ -30,5 +30,5 @@ tracing = { workspace = true }
better_scoped_tls = { version = "0.1.1", path = "../better_scoped_tls" }
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" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_plugin_runner"
repository = "https://github.com/swc-project/swc.git"
version = "0.107.2"
version = "0.108.0"
[lib]
bench = false
@ -63,8 +63,8 @@ swc_common = { version = "0.33.26", path = "../swc_common", features = [
"concurrent",
] }
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_plugin_proxy = { version = "0.42.1", path = "../swc_plugin_proxy" }
swc_ecma_ast = { version = "0.114.0", path = "../swc_ecma_ast", optional = true }
swc_plugin_proxy = { version = "0.43.0", path = "../swc_plugin_proxy" }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
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",
] }
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",
] }
swc_ecma_loader = { version = "0.45.28", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.144.1", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "0.99.1", path = "../swc_ecma_visit" }
swc_ecma_parser = { version = "0.145.0", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "0.100.0", path = "../swc_ecma_visit" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.24", path = "../testing" }
tokio = { workspace = true, features = ["rt"] }