diff --git a/Cargo.lock b/Cargo.lock index 85c9ee6cc93..e85e271121a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2443,7 +2443,7 @@ checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c" [[package]] name = "swc" -version = "0.95.0" +version = "0.96.0" dependencies = [ "ahash", "anyhow", @@ -2504,7 +2504,7 @@ dependencies = [ [[package]] name = "swc_bundler" -version = "0.89.0" +version = "0.90.0" dependencies = [ "ahash", "anyhow", @@ -2770,7 +2770,7 @@ dependencies = [ [[package]] name = "swc_ecma_minifier" -version = "0.58.0" +version = "0.59.0" dependencies = [ "ahash", "ansi_term 0.12.1", @@ -2845,7 +2845,7 @@ dependencies = [ [[package]] name = "swc_ecma_preset_env" -version = "0.73.0" +version = "0.74.0" dependencies = [ "ahash", "anyhow", @@ -2873,7 +2873,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms" -version = "0.101.0" +version = "0.102.0" dependencies = [ "pretty_assertions 0.6.1", "sourcemap", @@ -2921,7 +2921,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_classes" -version = "0.34.0" +version = "0.35.0" dependencies = [ "swc_atoms 0.2.9", "swc_common", @@ -2933,7 +2933,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_compat" -version = "0.57.7" +version = "0.58.0" dependencies = [ "ahash", "arrayvec", @@ -2972,7 +2972,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_module" -version = "0.63.0" +version = "0.64.0" dependencies = [ "Inflector", "ahash", @@ -2995,7 +2995,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_optimization" -version = "0.71.0" +version = "0.72.0" dependencies = [ "ahash", "dashmap", @@ -3024,7 +3024,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_proposal" -version = "0.63.0" +version = "0.64.0" dependencies = [ "either", "serde", @@ -3048,7 +3048,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_react" -version = "0.65.1" +version = "0.66.0" dependencies = [ "ahash", "base64 0.13.0", @@ -3097,7 +3097,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_typescript" -version = "0.67.2" +version = "0.68.0" dependencies = [ "serde", "swc_atoms 0.2.9", @@ -3147,7 +3147,7 @@ dependencies = [ [[package]] name = "swc_ecmascript" -version = "0.95.0" +version = "0.96.0" dependencies = [ "swc_ecma_ast", "swc_ecma_codegen", @@ -3183,7 +3183,7 @@ dependencies = [ [[package]] name = "swc_estree_compat" -version = "0.13.0" +version = "0.14.0" dependencies = [ "ahash", "anyhow", @@ -3398,7 +3398,7 @@ dependencies = [ [[package]] name = "swc_webpack_ast" -version = "0.11.0" +version = "0.12.0" dependencies = [ "anyhow", "rayon", diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 8b47fa5d997..7c3d8eb6c56 100644 --- a/crates/swc/Cargo.toml +++ b/crates/swc/Cargo.toml @@ -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.95.0" +version = "0.96.0" [lib] name = "swc" @@ -57,10 +57,10 @@ swc_ecma_ast = {version = "0.59.0", path = "../swc_ecma_ast"} swc_ecma_codegen = {version = "0.83.0", path = "../swc_ecma_codegen"} swc_ecma_ext_transforms = {version = "0.41.0", path = "../swc_ecma_ext_transforms"} swc_ecma_loader = {version = "0.25.0", path = "../swc_ecma_loader", features = ["lru", "node", "tsc"]} -swc_ecma_minifier = {version = "0.58.0", path = "../swc_ecma_minifier"} +swc_ecma_minifier = {version = "0.59.0", path = "../swc_ecma_minifier"} swc_ecma_parser = {version = "0.81.0", path = "../swc_ecma_parser"} -swc_ecma_preset_env = {version = "0.73.0", path = "../swc_ecma_preset_env"} -swc_ecma_transforms = {version = "0.101.0", path = "../swc_ecma_transforms", features = [ +swc_ecma_preset_env = {version = "0.74.0", path = "../swc_ecma_preset_env"} +swc_ecma_transforms = {version = "0.102.0", path = "../swc_ecma_transforms", features = [ "compat", "module", "optimization", @@ -69,11 +69,11 @@ swc_ecma_transforms = {version = "0.101.0", path = "../swc_ecma_transforms", fea "typescript", ]} swc_ecma_transforms_base = {version = "0.48.0", path = "../swc_ecma_transforms_base"} -swc_ecma_transforms_compat = {version = "0.57.0", path = "../swc_ecma_transforms_compat"} -swc_ecma_transforms_optimization = {version = "0.71.0", path = "../swc_ecma_transforms_optimization"} +swc_ecma_transforms_compat = {version = "0.58.0", path = "../swc_ecma_transforms_compat"} +swc_ecma_transforms_optimization = {version = "0.72.0", path = "../swc_ecma_transforms_optimization"} swc_ecma_utils = {version = "0.55.0", path = "../swc_ecma_utils"} swc_ecma_visit = {version = "0.45.0", path = "../swc_ecma_visit"} -swc_ecmascript = {version = "0.95.0", path = "../swc_ecmascript"} +swc_ecmascript = {version = "0.96.0", path = "../swc_ecmascript"} swc_node_comments = {version = "0.2.0", path = "../swc_node_comments"} swc_plugin_runner = {version = "0.21.0", path = "../swc_plugin_runner", optional = true} swc_visit = {version = "0.3.0", path = "../swc_visit"} diff --git a/crates/swc_bundler/Cargo.toml b/crates/swc_bundler/Cargo.toml index af11c55d3d3..f9419ed5e8d 100644 --- a/crates/swc_bundler/Cargo.toml +++ b/crates/swc_bundler/Cargo.toml @@ -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.89.0" +version = "0.90.0" [package.metadata.docs.rs] all-features = true @@ -47,7 +47,7 @@ swc_ecma_codegen = {version = "0.83.0", path = "../swc_ecma_codegen"} swc_ecma_loader = {version = "0.25.0", path = "../swc_ecma_loader"} swc_ecma_parser = {version = "0.81.0", path = "../swc_ecma_parser"} swc_ecma_transforms_base = {version = "0.48.0", path = "../swc_ecma_transforms_base"} -swc_ecma_transforms_optimization = {version = "0.71.0", path = "../swc_ecma_transforms_optimization"} +swc_ecma_transforms_optimization = {version = "0.72.0", path = "../swc_ecma_transforms_optimization"} swc_ecma_utils = {version = "0.55.0", path = "../swc_ecma_utils"} swc_ecma_visit = {version = "0.45.0", path = "../swc_ecma_visit"} swc_fast_graph = {version = "0.2.0", path = "../swc_fast_graph/"} @@ -61,9 +61,9 @@ path-clean = "=0.1.0" reqwest = {version = "0.11.4", features = ["blocking"]} sha-1 = "0.9" swc_ecma_loader = {version = "0.25.0", path = "../swc_ecma_loader", features = ["node", "lru"]} -swc_ecma_minifier = {version = "0.58.0", path = "../swc_ecma_minifier"} -swc_ecma_transforms_react = {version = "0.65.0", path = "../swc_ecma_transforms_react"} -swc_ecma_transforms_typescript = {version = "0.67.0", path = "../swc_ecma_transforms_typescript"} +swc_ecma_minifier = {version = "0.59.0", path = "../swc_ecma_minifier"} +swc_ecma_transforms_react = {version = "0.66.0", path = "../swc_ecma_transforms_react"} +swc_ecma_transforms_typescript = {version = "0.68.0", path = "../swc_ecma_transforms_typescript"} swc_node_base = {version = "0.5.0", path = "../swc_node_base"} tempfile = "3.1.0" testing = {version = "0.16.0", path = "../testing"} diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index eda48afbea6..9d08ed8df61 100644 --- a/crates/swc_ecma_minifier/Cargo.toml +++ b/crates/swc_ecma_minifier/Cargo.toml @@ -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.58.0" +version = "0.59.0" [package.metadata.docs.rs] all-features = true @@ -33,7 +33,7 @@ swc_common = {version = "0.15.0", path = "../swc_common"} swc_ecma_ast = {version = "0.59.0", path = "../swc_ecma_ast"} swc_ecma_codegen = {version = "0.83.0", path = "../swc_ecma_codegen"} swc_ecma_parser = {version = "0.81.0", path = "../swc_ecma_parser"} -swc_ecma_transforms = {version = "0.101.0", path = "../swc_ecma_transforms/", features = ["optimization"]} +swc_ecma_transforms = {version = "0.102.0", path = "../swc_ecma_transforms/", features = ["optimization"]} swc_ecma_transforms_base = {version = "0.48.0", path = "../swc_ecma_transforms_base"} swc_ecma_utils = {version = "0.55.0", path = "../swc_ecma_utils"} swc_ecma_visit = {version = "0.45.0", path = "../swc_ecma_visit"} diff --git a/crates/swc_ecma_preset_env/Cargo.toml b/crates/swc_ecma_preset_env/Cargo.toml index 8016e6c9aa6..5ee253993cb 100644 --- a/crates/swc_ecma_preset_env/Cargo.toml +++ b/crates/swc_ecma_preset_env/Cargo.toml @@ -5,7 +5,7 @@ documentation = "https://rustdoc.swc.rs/swc_ecma_preset_env/" edition = "2018" license = "Apache-2.0" name = "swc_ecma_preset_env" -version = "0.73.0" +version = "0.74.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -24,7 +24,7 @@ string_enum = {version = "0.3.1", path = "../string_enum"} swc_atoms = {version = "0.2", path = "../swc_atoms"} swc_common = {version = "0.15.0", path = "../swc_common"} swc_ecma_ast = {version = "0.59.0", path = "../swc_ecma_ast"} -swc_ecma_transforms = {version = "0.101.0", path = "../swc_ecma_transforms", features = ["compat", "proposal"]} +swc_ecma_transforms = {version = "0.102.0", path = "../swc_ecma_transforms", features = ["compat", "proposal"]} swc_ecma_utils = {version = "0.55.0", path = "../swc_ecma_utils"} swc_ecma_visit = {version = "0.45.0", path = "../swc_ecma_visit"} walkdir = "2" diff --git a/crates/swc_ecma_transforms/Cargo.toml b/crates/swc_ecma_transforms/Cargo.toml index 045bae1f886..b1b3163ec14 100644 --- a/crates/swc_ecma_transforms/Cargo.toml +++ b/crates/swc_ecma_transforms/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "Apache-2.0" name = "swc_ecma_transforms" repository = "https://github.com/swc-project/swc.git" -version = "0.101.0" +version = "0.102.0" [package.metadata.docs.rs] all-features = true @@ -28,12 +28,12 @@ swc_common = {version = "0.15.0", path = "../swc_common"} swc_ecma_ast = {version = "0.59.0", path = "../swc_ecma_ast"} swc_ecma_parser = {version = "0.81.0", path = "../swc_ecma_parser"} swc_ecma_transforms_base = {version = "0.48.0", path = "../swc_ecma_transforms_base"} -swc_ecma_transforms_compat = {version = "0.57.0", path = "../swc_ecma_transforms_compat", optional = true} -swc_ecma_transforms_module = {version = "0.63.0", path = "../swc_ecma_transforms_module", optional = true} -swc_ecma_transforms_optimization = {version = "0.71.0", path = "../swc_ecma_transforms_optimization", optional = true} -swc_ecma_transforms_proposal = {version = "0.63.0", path = "../swc_ecma_transforms_proposal", optional = true} -swc_ecma_transforms_react = {version = "0.65.0", path = "../swc_ecma_transforms_react", optional = true} -swc_ecma_transforms_typescript = {version = "0.67.0", path = "../swc_ecma_transforms_typescript", optional = true} +swc_ecma_transforms_compat = {version = "0.58.0", path = "../swc_ecma_transforms_compat", optional = true} +swc_ecma_transforms_module = {version = "0.64.0", path = "../swc_ecma_transforms_module", optional = true} +swc_ecma_transforms_optimization = {version = "0.72.0", path = "../swc_ecma_transforms_optimization", optional = true} +swc_ecma_transforms_proposal = {version = "0.64.0", path = "../swc_ecma_transforms_proposal", optional = true} +swc_ecma_transforms_react = {version = "0.66.0", path = "../swc_ecma_transforms_react", optional = true} +swc_ecma_transforms_typescript = {version = "0.68.0", path = "../swc_ecma_transforms_typescript", optional = true} swc_ecma_utils = {version = "0.55.0", path = "../swc_ecma_utils"} swc_ecma_visit = {version = "0.45.0", path = "../swc_ecma_visit"} unicode-xid = "0.2" diff --git a/crates/swc_ecma_transforms_classes/Cargo.toml b/crates/swc_ecma_transforms_classes/Cargo.toml index c93bb4e732b..0e40f29d95d 100644 --- a/crates/swc_ecma_transforms_classes/Cargo.toml +++ b/crates/swc_ecma_transforms_classes/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "Apache-2.0" name = "swc_ecma_transforms_classes" repository = "https://github.com/swc-project/swc.git" -version = "0.34.0" +version = "0.35.0" [dependencies] swc_atoms = {version = "0.2.6", path = "../swc_atoms"} diff --git a/crates/swc_ecma_transforms_compat/Cargo.toml b/crates/swc_ecma_transforms_compat/Cargo.toml index 943677e3654..736785d0604 100644 --- a/crates/swc_ecma_transforms_compat/Cargo.toml +++ b/crates/swc_ecma_transforms_compat/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "Apache-2.0" name = "swc_ecma_transforms_compat" repository = "https://github.com/swc-project/swc.git" -version = "0.57.7" +version = "0.58.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] @@ -30,7 +30,7 @@ swc_atoms = {version = "0.2.5", path = "../swc_atoms"} swc_common = {version = "0.15.0", path = "../swc_common"} swc_ecma_ast = {version = "0.59.0", path = "../swc_ecma_ast"} swc_ecma_transforms_base = {version = "0.48.0", path = "../swc_ecma_transforms_base"} -swc_ecma_transforms_classes = {version = "0.34.0", path = "../swc_ecma_transforms_classes"} +swc_ecma_transforms_classes = {version = "0.35.0", path = "../swc_ecma_transforms_classes"} swc_ecma_transforms_macros = {version = "0.3.0", path = "../swc_ecma_transforms_macros"} swc_ecma_utils = {version = "0.55.0", path = "../swc_ecma_utils"} swc_ecma_visit = {version = "0.45.0", path = "../swc_ecma_visit"} diff --git a/crates/swc_ecma_transforms_module/Cargo.toml b/crates/swc_ecma_transforms_module/Cargo.toml index 3c5baee8a55..eb9ff6c48a6 100644 --- a/crates/swc_ecma_transforms_module/Cargo.toml +++ b/crates/swc_ecma_transforms_module/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "Apache-2.0" name = "swc_ecma_transforms_module" repository = "https://github.com/swc-project/swc.git" -version = "0.63.0" +version = "0.64.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] @@ -26,6 +26,6 @@ swc_ecma_utils = {version = "0.55.0", path = "../swc_ecma_utils"} swc_ecma_visit = {version = "0.45.0", path = "../swc_ecma_visit"} [dev-dependencies] -swc_ecma_transforms_compat = {version = "0.57.0", path = "../swc_ecma_transforms_compat"} +swc_ecma_transforms_compat = {version = "0.58.0", path = "../swc_ecma_transforms_compat"} swc_ecma_transforms_testing = {version = "0.50.0", path = "../swc_ecma_transforms_testing"} testing = {version = "0.16.0", path = "../testing/"} diff --git a/crates/swc_ecma_transforms_optimization/Cargo.toml b/crates/swc_ecma_transforms_optimization/Cargo.toml index 48fa70719a9..93623a4faa8 100644 --- a/crates/swc_ecma_transforms_optimization/Cargo.toml +++ b/crates/swc_ecma_transforms_optimization/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "Apache-2.0" name = "swc_ecma_transforms_optimization" repository = "https://github.com/swc-project/swc.git" -version = "0.71.0" +version = "0.72.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] @@ -37,10 +37,10 @@ swc_ecma_visit = {version = "0.45.0", path = "../swc_ecma_visit"} tracing = "0.1.28" [dev-dependencies] -swc_ecma_transforms_compat = {version = "0.57.0", path = "../swc_ecma_transforms_compat"} -swc_ecma_transforms_module = {version = "0.63.0", path = "../swc_ecma_transforms_module"} -swc_ecma_transforms_proposal = {version = "0.63.0", path = "../swc_ecma_transforms_proposal"} -swc_ecma_transforms_react = {version = "0.65.0", path = "../swc_ecma_transforms_react"} +swc_ecma_transforms_compat = {version = "0.58.0", path = "../swc_ecma_transforms_compat"} +swc_ecma_transforms_module = {version = "0.64.0", path = "../swc_ecma_transforms_module"} +swc_ecma_transforms_proposal = {version = "0.64.0", path = "../swc_ecma_transforms_proposal"} +swc_ecma_transforms_react = {version = "0.66.0", path = "../swc_ecma_transforms_react"} swc_ecma_transforms_testing = {version = "0.50.0", path = "../swc_ecma_transforms_testing"} -swc_ecma_transforms_typescript = {version = "0.67.0", path = "../swc_ecma_transforms_typescript"} +swc_ecma_transforms_typescript = {version = "0.68.0", path = "../swc_ecma_transforms_typescript"} testing = {version = "0.16.0", path = "../testing"} diff --git a/crates/swc_ecma_transforms_proposal/Cargo.toml b/crates/swc_ecma_transforms_proposal/Cargo.toml index 907efce1040..18a0a95de04 100644 --- a/crates/swc_ecma_transforms_proposal/Cargo.toml +++ b/crates/swc_ecma_transforms_proposal/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "Apache-2.0" name = "swc_ecma_transforms_proposal" repository = "https://github.com/swc-project/swc.git" -version = "0.63.0" +version = "0.64.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -24,14 +24,14 @@ swc_ecma_ast = {version = "0.59.0", path = "../swc_ecma_ast"} swc_ecma_loader = {version = "0.25.0", path = "../swc_ecma_loader", optional = true} swc_ecma_parser = {version = "0.81.0", path = "../swc_ecma_parser"} swc_ecma_transforms_base = {version = "0.48.0", path = "../swc_ecma_transforms_base"} -swc_ecma_transforms_classes = {version = "0.34.0", path = "../swc_ecma_transforms_classes"} +swc_ecma_transforms_classes = {version = "0.35.0", path = "../swc_ecma_transforms_classes"} swc_ecma_transforms_macros = {version = "0.3.0", path = "../swc_ecma_transforms_macros"} swc_ecma_utils = {version = "0.55.0", path = "../swc_ecma_utils"} swc_ecma_visit = {version = "0.45.0", path = "../swc_ecma_visit"} [dev-dependencies] serde_json = "1.0.66" -swc_ecma_transforms_compat = {version = "0.57.0", path = "../swc_ecma_transforms_compat"} -swc_ecma_transforms_module = {version = "0.63.0", path = "../swc_ecma_transforms_module"} +swc_ecma_transforms_compat = {version = "0.58.0", path = "../swc_ecma_transforms_compat"} +swc_ecma_transforms_module = {version = "0.64.0", path = "../swc_ecma_transforms_module"} swc_ecma_transforms_testing = {version = "0.50.0", path = "../swc_ecma_transforms_testing"} testing = {version = "0.16.0", path = "../testing"} diff --git a/crates/swc_ecma_transforms_react/Cargo.toml b/crates/swc_ecma_transforms_react/Cargo.toml index 125a5c56162..28d909efae8 100644 --- a/crates/swc_ecma_transforms_react/Cargo.toml +++ b/crates/swc_ecma_transforms_react/Cargo.toml @@ -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.65.1" +version = "0.66.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] @@ -31,7 +31,7 @@ swc_ecma_visit = {version = "0.45.0", path = "../swc_ecma_visit"} [dev-dependencies] swc_ecma_codegen = {version = "0.83.0", path = "../swc_ecma_codegen/"} -swc_ecma_transforms_compat = {version = "0.57.0", path = "../swc_ecma_transforms_compat/"} -swc_ecma_transforms_module = {version = "0.63.0", path = "../swc_ecma_transforms_module"} +swc_ecma_transforms_compat = {version = "0.58.0", path = "../swc_ecma_transforms_compat/"} +swc_ecma_transforms_module = {version = "0.64.0", path = "../swc_ecma_transforms_module"} swc_ecma_transforms_testing = {version = "0.50.0", path = "../swc_ecma_transforms_testing"} testing = {version = "0.16.0", path = "../testing"} diff --git a/crates/swc_ecma_transforms_typescript/Cargo.toml b/crates/swc_ecma_transforms_typescript/Cargo.toml index 246d018f15c..426d81aca32 100644 --- a/crates/swc_ecma_transforms_typescript/Cargo.toml +++ b/crates/swc_ecma_transforms_typescript/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "Apache-2.0" name = "swc_ecma_transforms_typescript" repository = "https://github.com/swc-project/swc.git" -version = "0.67.2" +version = "0.68.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] @@ -16,15 +16,15 @@ swc_common = {version = "0.15.0", path = "../swc_common"} swc_ecma_ast = {version = "0.59.0", path = "../swc_ecma_ast"} swc_ecma_parser = {version = "0.81.0", path = "../swc_ecma_parser"} swc_ecma_transforms_base = {version = "0.48.0", path = "../swc_ecma_transforms_base"} -swc_ecma_transforms_react = {version = "0.65.0", path = "../swc_ecma_transforms_react"} +swc_ecma_transforms_react = {version = "0.66.0", path = "../swc_ecma_transforms_react"} swc_ecma_utils = {version = "0.55.0", path = "../swc_ecma_utils"} swc_ecma_visit = {version = "0.45.0", path = "../swc_ecma_visit"} [dev-dependencies] swc_ecma_codegen = {version = "0.83.0", path = "../swc_ecma_codegen"} -swc_ecma_transforms_compat = {version = "0.57.0", path = "../swc_ecma_transforms_compat"} -swc_ecma_transforms_module = {version = "0.63.0", path = "../swc_ecma_transforms_module"} -swc_ecma_transforms_proposal = {version = "0.63.0", path = "../swc_ecma_transforms_proposal"} +swc_ecma_transforms_compat = {version = "0.58.0", path = "../swc_ecma_transforms_compat"} +swc_ecma_transforms_module = {version = "0.64.0", path = "../swc_ecma_transforms_module"} +swc_ecma_transforms_proposal = {version = "0.64.0", path = "../swc_ecma_transforms_proposal"} swc_ecma_transforms_testing = {version = "0.50.0", path = "../swc_ecma_transforms_testing"} testing = {version = "0.16.0", path = "../testing"} walkdir = "2.3.1" diff --git a/crates/swc_ecmascript/Cargo.toml b/crates/swc_ecmascript/Cargo.toml index 79ddbca0823..d91e2eae85b 100644 --- a/crates/swc_ecmascript/Cargo.toml +++ b/crates/swc_ecmascript/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "Apache-2.0" name = "swc_ecmascript" repository = "https://github.com/swc-project/swc.git" -version = "0.95.0" +version = "0.96.0" [package.metadata.docs.rs] all-features = true @@ -36,10 +36,10 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"] swc_ecma_ast = {version = "0.59.0", path = "../swc_ecma_ast"} swc_ecma_codegen = {version = "0.83.0", path = "../swc_ecma_codegen", optional = true} swc_ecma_dep_graph = {version = "0.50.0", path = "../swc_ecma_dep_graph", optional = true} -swc_ecma_minifier = {version = "0.58.0", path = "../swc_ecma_minifier", optional = true} +swc_ecma_minifier = {version = "0.59.0", path = "../swc_ecma_minifier", optional = true} swc_ecma_parser = {version = "0.81.0", path = "../swc_ecma_parser", optional = true, default-features = false} -swc_ecma_preset_env = {version = "0.73.0", path = "../swc_ecma_preset_env", optional = true} -swc_ecma_transforms = {version = "0.101.0", path = "../swc_ecma_transforms", optional = true} +swc_ecma_preset_env = {version = "0.74.0", path = "../swc_ecma_preset_env", optional = true} +swc_ecma_transforms = {version = "0.102.0", path = "../swc_ecma_transforms", optional = true} swc_ecma_utils = {version = "0.55.0", path = "../swc_ecma_utils", optional = true} swc_ecma_visit = {version = "0.45.0", path = "../swc_ecma_visit", optional = true} diff --git a/crates/swc_estree_compat/Cargo.toml b/crates/swc_estree_compat/Cargo.toml index e3c93876d88..cd2c4af2e7e 100644 --- a/crates/swc_estree_compat/Cargo.toml +++ b/crates/swc_estree_compat/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "Apache-2.0" name = "swc_estree_compat" repository = "https://github.com/swc-project/swc.git" -version = "0.13.0" +version = "0.14.0" [package.metadata.docs.rs] all-features = true @@ -29,10 +29,10 @@ swc_node_comments = {version = "0.2.0", path = "../swc_node_comments/"} [dev-dependencies] pretty_assertions = "0.7.1" -swc = {version = "0.95.0", path = "../swc"} +swc = {version = "0.96.0", path = "../swc"} swc_ecma_ast = {version = "0.59.0", path = "../swc_ecma_ast"} swc_ecma_parser = {version = "0.81.0", path = "../swc_ecma_parser"} -swc_ecma_transforms = {version = "0.101.0", path = "../swc_ecma_transforms/"} +swc_ecma_transforms = {version = "0.102.0", path = "../swc_ecma_transforms/"} swc_node_base = {version = "0.5", path = "../swc_node_base"} testing = {version = "0.16.0", path = "../testing"} walkdir = "2" diff --git a/crates/swc_webpack_ast/Cargo.toml b/crates/swc_webpack_ast/Cargo.toml index b12902b3a7d..e8c11527ca6 100644 --- a/crates/swc_webpack_ast/Cargo.toml +++ b/crates/swc_webpack_ast/Cargo.toml @@ -5,7 +5,7 @@ edition = "2018" license = "Apache-2.0" name = "swc_webpack_ast" repository = "https://github.com/swc-project/swc.git" -version = "0.11.0" +version = "0.12.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -21,7 +21,7 @@ swc_ecma_transforms_base = {version = "0.48.0", path = "../swc_ecma_transforms_b swc_ecma_utils = {version = "0.55.0", path = "../swc_ecma_utils"} swc_ecma_visit = {version = "0.45.0", path = "../swc_ecma_visit"} swc_estree_ast = {version = "0.5.0", path = "../swc_estree_ast"} -swc_estree_compat = {version = "0.13.0", path = "../swc_estree_compat"} +swc_estree_compat = {version = "0.14.0", path = "../swc_estree_compat"} swc_timer = {version = "0.2.0", path = "../swc_timer"} tracing = "0.1.29"