From 56c44167268ddad3854ca10ac40749602a43eaf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EB=8F=99=EC=9C=A4=20=28Donny=29?= Date: Tue, 15 Oct 2024 23:13:49 +0900 Subject: [PATCH] chore: Publish crates with `swc_core` `v1.0.1` --- .changeset/beige-moles-grow.md | 6 ----- .changeset/honest-cooks-dream.md | 7 ------ .changeset/lazy-ladybugs-jump.md | 6 ----- CHANGELOG.md | 24 ++++++++++++++++--- Cargo.lock | 10 ++++---- crates/binding_macros/Cargo.toml | 2 +- crates/dbg-swc/Cargo.toml | 2 +- crates/swc/Cargo.toml | 6 ++--- crates/swc_bundler/Cargo.toml | 4 ++-- crates/swc_cli_impl/Cargo.toml | 2 +- crates/swc_compiler_base/Cargo.toml | 2 +- crates/swc_core/Cargo.toml | 10 ++++---- crates/swc_ecma_compat_bugfixes/Cargo.toml | 2 +- crates/swc_ecma_compat_common/Cargo.toml | 2 +- crates/swc_ecma_compat_es2015/Cargo.toml | 2 +- crates/swc_ecma_compat_es2016/Cargo.toml | 2 +- crates/swc_ecma_compat_es2017/Cargo.toml | 2 +- crates/swc_ecma_compat_es2018/Cargo.toml | 2 +- crates/swc_ecma_compat_es2019/Cargo.toml | 2 +- crates/swc_ecma_compat_es2020/Cargo.toml | 2 +- crates/swc_ecma_compat_es2021/Cargo.toml | 2 +- crates/swc_ecma_compat_es2022/Cargo.toml | 2 +- crates/swc_ecma_compat_es3/Cargo.toml | 2 +- crates/swc_ecma_ext_transforms/Cargo.toml | 2 +- crates/swc_ecma_lints/Cargo.toml | 2 +- crates/swc_ecma_minifier/Cargo.toml | 6 ++--- crates/swc_ecma_preset_env/Cargo.toml | 2 +- crates/swc_ecma_transforms/Cargo.toml | 2 +- crates/swc_ecma_transforms_base/Cargo.toml | 2 +- crates/swc_ecma_transforms_classes/Cargo.toml | 2 +- crates/swc_ecma_transforms_compat/Cargo.toml | 2 +- crates/swc_ecma_transforms_module/Cargo.toml | 2 +- .../Cargo.toml | 2 +- .../swc_ecma_transforms_proposal/Cargo.toml | 2 +- crates/swc_ecma_transforms_react/Cargo.toml | 2 +- crates/swc_ecma_transforms_testing/Cargo.toml | 2 +- .../swc_ecma_transforms_typescript/Cargo.toml | 2 +- crates/swc_ecma_usage_analyzer/Cargo.toml | 4 ++-- crates/swc_ecma_utils/Cargo.toml | 2 +- crates/swc_ecmascript/Cargo.toml | 4 ++-- crates/swc_estree_compat/Cargo.toml | 4 ++-- crates/swc_html_minifier/Cargo.toml | 2 +- crates/swc_node_bundler/Cargo.toml | 4 ++-- 43 files changed, 77 insertions(+), 78 deletions(-) delete mode 100644 .changeset/beige-moles-grow.md delete mode 100644 .changeset/honest-cooks-dream.md delete mode 100644 .changeset/lazy-ladybugs-jump.md diff --git a/.changeset/beige-moles-grow.md b/.changeset/beige-moles-grow.md deleted file mode 100644 index 654e2d505a9d..000000000000 --- a/.changeset/beige-moles-grow.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -swc: patch -swc_core: patch ---- - -fix(es): Run esnext transforms on esnext target diff --git a/.changeset/honest-cooks-dream.md b/.changeset/honest-cooks-dream.md deleted file mode 100644 index da76f4566aeb..000000000000 --- a/.changeset/honest-cooks-dream.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -swc_ecma_minifier: patch -swc_ecma_utils: patch -swc_ecma_usage_analyzer: patch ---- - -fix(es/minifier): Check type of assignment target before merging assignments diff --git a/.changeset/lazy-ladybugs-jump.md b/.changeset/lazy-ladybugs-jump.md deleted file mode 100644 index 9bde60378816..000000000000 --- a/.changeset/lazy-ladybugs-jump.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -swc_ecma_utils: patch -swc_core: patch ---- - -feat(es/minifier): Support unary negate in `cast_to_number` diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d3acd1416aa..37ee67497b17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ +- **(es)** Run esnext transforms on esnext target ([#9644](https://github.com/swc-project/swc/issues/9644)) ([8a19201](https://github.com/swc-project/swc/commit/8a192018247ad7ac253c2964038de5f626acb8c4)) + + - **(es/codegen)** Emit space after div if rhs has leading comment ([#9631](https://github.com/swc-project/swc/issues/9631)) ([f2be26e](https://github.com/swc-project/swc/commit/f2be26efe090f5c1575f5bb9e4067f7ae531f11c)) @@ -13,6 +16,24 @@ - **(es/minifier)** Only merge last if return ([#9633](https://github.com/swc-project/swc/issues/9633)) ([6f52949](https://github.com/swc-project/swc/commit/6f52949210ee2a71ed119cbcdf2db1842a2e63cb)) + +- **(es/minifier)** Check type of assignment target before merging assignments ([#9617](https://github.com/swc-project/swc/issues/9617)) ([4436621](https://github.com/swc-project/swc/commit/44366215644f3fff2f897e509a56b36cb5e1f8a2)) + +### Features + + + +- **(es)** Introduce `runPluginFirst` for Wasm plugins ([#9645](https://github.com/swc-project/swc/issues/9645)) ([3d3e434](https://github.com/swc-project/swc/commit/3d3e4340b33e124f551ee88b68bfaddb537a3c6a)) + + +- **(es/minifier)** Support unary negate in `cast_to_number` ([#9642](https://github.com/swc-project/swc/issues/9642)) ([88a2186](https://github.com/swc-project/swc/commit/88a2186ba419c98c73b997ca9ea90d7a8fd128e4)) + +### Miscellaneous Tasks + + + +- **(deps)** Update dependency magic-string to v0.30.12 ([#9634](https://github.com/swc-project/swc/issues/9634)) ([085bc19](https://github.com/swc-project/swc/commit/085bc191e46d4d46efc3d4a7cd5fc1240c8474dd)) + ## [1.7.35] - 2024-10-10 ### Bug Fixes @@ -1311,9 +1332,6 @@ - **(es/codegen)** Add `to_code` ([#8968](https://github.com/swc-project/swc/issues/8968)) ([e80fd41](https://github.com/swc-project/swc/commit/e80fd41ea806f118ec9eeaa292f840c75aac3967)) - -- **(plugin/runner)** Add description about wasi and file system ([#8963](https://github.com/swc-project/swc/issues/8963)) ([ced63a9](https://github.com/swc-project/swc/commit/ced63a973e48e542bc889675b2f2d4fb48abfb8d)) - ### Testing diff --git a/Cargo.lock b/Cargo.lock index d83e059c1f86..4b72b10da1a3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3850,7 +3850,7 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" [[package]] name = "swc" -version = "1.0.0" +version = "1.0.1" dependencies = [ "ansi_term", "anyhow", @@ -4115,7 +4115,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "1.0.0" +version = "1.0.1" dependencies = [ "anyhow", "binding_macros", @@ -4657,7 +4657,7 @@ dependencies = [ [[package]] name = "swc_ecma_minifier" -version = "1.0.0" +version = "1.0.1" dependencies = [ "ansi_term", "anyhow", @@ -5069,7 +5069,7 @@ dependencies = [ [[package]] name = "swc_ecma_usage_analyzer" -version = "1.0.0" +version = "1.0.1" dependencies = [ "indexmap 2.5.0", "rustc-hash", @@ -5084,7 +5084,7 @@ dependencies = [ [[package]] name = "swc_ecma_utils" -version = "1.0.0" +version = "1.0.1" dependencies = [ "indexmap 2.5.0", "num_cpus", diff --git a/crates/binding_macros/Cargo.toml b/crates/binding_macros/Cargo.toml index befa4f41a355..8cc12faf611f 100644 --- a/crates/binding_macros/Cargo.toml +++ b/crates/binding_macros/Cargo.toml @@ -33,7 +33,7 @@ binding_wasm = [ [dependencies] # Common deps for the SWC imports -swc = { optional = true, version = "1.0.0", path = "../swc" } +swc = { optional = true, version = "1.0.1", path = "../swc" } swc_common = { optional = true, version = "1.0.0", path = "../swc_common" } swc_ecma_ast = { optional = true, version = "1.0.0", path = "../swc_ecma_ast" } swc_ecma_transforms = { optional = true, version = "1.0.0", path = "../swc_ecma_transforms" } diff --git a/crates/dbg-swc/Cargo.toml b/crates/dbg-swc/Cargo.toml index afff9d851f38..9d7fb7167082 100644 --- a/crates/dbg-swc/Cargo.toml +++ b/crates/dbg-swc/Cargo.toml @@ -33,7 +33,7 @@ swc_common = { version = "1.0.0", features = [ ], path = "../swc_common" } swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "1.0.0", path = "../swc_ecma_codegen" } -swc_ecma_minifier = { version = "1.0.0", path = "../swc_ecma_minifier", features = [ +swc_ecma_minifier = { version = "1.0.1", path = "../swc_ecma_minifier", features = [ "concurrent", ] } swc_ecma_parser = { version = "1.0.0", path = "../swc_ecma_parser" } diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index dbe17b2278ce..7ff2213be6b2 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 = "1.0.0" +version = "1.0.1" [lib] bench = false @@ -85,7 +85,7 @@ swc_ecma_loader = { version = "1.0.0", path = "../swc_ecma_loader", features = [ "node", "tsc", ] } -swc_ecma_minifier = { version = "1.0.0", path = "../swc_ecma_minifier" } +swc_ecma_minifier = { version = "1.0.1", path = "../swc_ecma_minifier" } swc_ecma_parser = { version = "1.0.0", path = "../swc_ecma_parser" } swc_ecma_preset_env = { version = "1.0.0", path = "../swc_ecma_preset_env" } swc_ecma_transforms = { version = "1.0.0", path = "../swc_ecma_transforms", features = [ @@ -99,7 +99,7 @@ swc_ecma_transforms = { version = "1.0.0", path = "../swc_ecma_transforms", feat swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_compat = { version = "1.0.0", path = "../swc_ecma_transforms_compat" } swc_ecma_transforms_optimization = { version = "1.0.0", path = "../swc_ecma_transforms_optimization" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } swc_error_reporters = { version = "2.0.0", path = "../swc_error_reporters" } swc_node_comments = { version = "1.0.0", path = "../swc_node_comments" } diff --git a/crates/swc_bundler/Cargo.toml b/crates/swc_bundler/Cargo.toml index b166c46cf677..7607d31a535a 100644 --- a/crates/swc_bundler/Cargo.toml +++ b/crates/swc_bundler/Cargo.toml @@ -45,7 +45,7 @@ swc_ecma_loader = { version = "1.0.0", path = "../swc_ecma_load swc_ecma_parser = { version = "1.0.0", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_optimization = { version = "1.0.0", path = "../swc_ecma_transforms_optimization" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } swc_fast_graph = { version = "2.0.0", path = "../swc_fast_graph/" } swc_graph_analyzer = { version = "1.0.0", path = "../swc_graph_analyzer/" } @@ -63,7 +63,7 @@ swc_ecma_loader = { version = "1.0.0", path = "../swc_ecma_loader", features = [ "node", "cache", ] } -swc_ecma_minifier = { version = "1.0.0", path = "../swc_ecma_minifier", features = [ +swc_ecma_minifier = { version = "1.0.1", path = "../swc_ecma_minifier", features = [ "concurrent", ] } swc_ecma_transforms_proposal = { version = "1.0.0", path = "../swc_ecma_transforms_proposal" } diff --git a/crates/swc_cli_impl/Cargo.toml b/crates/swc_cli_impl/Cargo.toml index bee23d15ee66..a220e585940c 100644 --- a/crates/swc_cli_impl/Cargo.toml +++ b/crates/swc_cli_impl/Cargo.toml @@ -39,7 +39,7 @@ tracing-futures = { workspace = true } tracing-subscriber = { workspace = true, features = ["env-filter"] } walkdir = { workspace = true } -swc_core = { version = "1.0.0", features = [ +swc_core = { version = "1.0.1", features = [ "trace_macro", "common_concurrent", "base_concurrent", diff --git a/crates/swc_compiler_base/Cargo.toml b/crates/swc_compiler_base/Cargo.toml index bf62f6576e0d..d1f83e0b8542 100644 --- a/crates/swc_compiler_base/Cargo.toml +++ b/crates/swc_compiler_base/Cargo.toml @@ -30,7 +30,7 @@ swc_common = { version = "1.0.0", path = "../swc_common", features = [ swc_config = { version = "1.0.0", path = "../swc_config" } swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "1.0.0", path = "../swc_ecma_codegen" } -swc_ecma_minifier = { version = "1.0.0", path = "../swc_ecma_minifier" } +swc_ecma_minifier = { version = "1.0.1", path = "../swc_ecma_minifier" } swc_ecma_parser = { version = "1.0.0", path = "../swc_ecma_parser" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } swc_timer = { version = "1.0.0", path = "../swc_timer" } diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 67e870b0bf09..f1e81fdbd56e 100644 --- a/crates/swc_core/Cargo.toml +++ b/crates/swc_core/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_core" repository = "https://github.com/swc-project/swc.git" -version = "1.0.0" +version = "1.0.1" [package.metadata.docs.rs] features = [ "allocator_node", @@ -339,7 +339,7 @@ once_cell = { workspace = true, optional = true } # swc_* dependencies binding_macros = { optional = true, version = "1.0.0", path = "../binding_macros" } -swc = { optional = true, version = "1.0.0", path = "../swc" } +swc = { optional = true, version = "1.0.1", path = "../swc" } swc_atoms = { optional = true, version = "2.0.0", path = "../swc_atoms" } swc_bundler = { optional = true, version = "1.0.0", path = "../swc_bundler" } swc_cached = { optional = true, version = "1.0.0", path = "../swc_cached" } @@ -357,7 +357,7 @@ swc_ecma_ast = { optional = true, version = "1.0.0", path = swc_ecma_codegen = { optional = true, version = "1.0.0", path = "../swc_ecma_codegen" } swc_ecma_lints = { optional = true, version = "1.0.0", path = "../swc_ecma_lints" } swc_ecma_loader = { optional = true, version = "1.0.0", path = "../swc_ecma_loader" } -swc_ecma_minifier = { optional = true, version = "1.0.0", path = "../swc_ecma_minifier" } +swc_ecma_minifier = { optional = true, version = "1.0.1", path = "../swc_ecma_minifier" } swc_ecma_parser = { optional = true, version = "1.0.0", path = "../swc_ecma_parser" } swc_ecma_preset_env = { optional = true, version = "1.0.0", path = "../swc_ecma_preset_env" } swc_ecma_quote_macros = { optional = true, version = "1.0.0", path = "../swc_ecma_quote_macros" } @@ -369,8 +369,8 @@ swc_ecma_transforms_proposal = { optional = true, version = "1.0.0", path = swc_ecma_transforms_react = { optional = true, version = "1.0.0", path = "../swc_ecma_transforms_react" } swc_ecma_transforms_testing = { optional = true, version = "1.0.0", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_typescript = { optional = true, version = "1.0.0", path = "../swc_ecma_transforms_typescript" } -swc_ecma_usage_analyzer = { optional = true, version = "1.0.0", path = "../swc_ecma_usage_analyzer" } -swc_ecma_utils = { optional = true, version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_usage_analyzer = { optional = true, version = "1.0.1", path = "../swc_ecma_usage_analyzer" } +swc_ecma_utils = { optional = true, version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { optional = true, version = "1.0.0", path = "../swc_ecma_visit" } swc_malloc = { optional = true, version = "1.0.0", path = "../swc_malloc" } swc_node_bundler = { optional = true, version = "1.0.0", path = "../swc_node_bundler" } diff --git a/crates/swc_ecma_compat_bugfixes/Cargo.toml b/crates/swc_ecma_compat_bugfixes/Cargo.toml index fb4ee032b3d5..6c6d8592c24a 100644 --- a/crates/swc_ecma_compat_bugfixes/Cargo.toml +++ b/crates/swc_ecma_compat_bugfixes/Cargo.toml @@ -16,7 +16,7 @@ swc_common = { version = "1.0.0", path = "../swc_common" } swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" } swc_ecma_compat_es2015 = { version = "1.0.0", path = "../swc_ecma_compat_es2015" } swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" } tracing = { workspace = true } diff --git a/crates/swc_ecma_compat_common/Cargo.toml b/crates/swc_ecma_compat_common/Cargo.toml index 7e297804153c..ba46e5b29907 100644 --- a/crates/swc_ecma_compat_common/Cargo.toml +++ b/crates/swc_ecma_compat_common/Cargo.toml @@ -14,6 +14,6 @@ version = "1.0.0" [dependencies] swc_common = { version = "1.0.0", path = "../swc_common" } swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" } diff --git a/crates/swc_ecma_compat_es2015/Cargo.toml b/crates/swc_ecma_compat_es2015/Cargo.toml index 499905cf6ed2..5c8f6140866b 100644 --- a/crates/swc_ecma_compat_es2015/Cargo.toml +++ b/crates/swc_ecma_compat_es2015/Cargo.toml @@ -30,7 +30,7 @@ swc_ecma_compat_common = { version = "1.0.0", path = "../swc_ecma_compat_co swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_classes = { version = "1.0.0", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" } tracing = { workspace = true } diff --git a/crates/swc_ecma_compat_es2016/Cargo.toml b/crates/swc_ecma_compat_es2016/Cargo.toml index 3ca30ffb296a..ec55c667601e 100644 --- a/crates/swc_ecma_compat_es2016/Cargo.toml +++ b/crates/swc_ecma_compat_es2016/Cargo.toml @@ -18,7 +18,7 @@ swc_common = { version = "1.0.0", path = "../swc_common" } swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" } tracing = { workspace = true } diff --git a/crates/swc_ecma_compat_es2017/Cargo.toml b/crates/swc_ecma_compat_es2017/Cargo.toml index 6cf853561528..3535ade12bd5 100644 --- a/crates/swc_ecma_compat_es2017/Cargo.toml +++ b/crates/swc_ecma_compat_es2017/Cargo.toml @@ -21,7 +21,7 @@ swc_common = { version = "1.0.0", path = "../swc_common" } swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" } diff --git a/crates/swc_ecma_compat_es2018/Cargo.toml b/crates/swc_ecma_compat_es2018/Cargo.toml index e8dab6ff3302..c5002f80bcf4 100644 --- a/crates/swc_ecma_compat_es2018/Cargo.toml +++ b/crates/swc_ecma_compat_es2018/Cargo.toml @@ -22,7 +22,7 @@ swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" } swc_ecma_compat_common = { version = "1.0.0", path = "../swc_ecma_compat_common" } swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" } diff --git a/crates/swc_ecma_compat_es2019/Cargo.toml b/crates/swc_ecma_compat_es2019/Cargo.toml index 55d65037fed9..33aeaf7b92de 100644 --- a/crates/swc_ecma_compat_es2019/Cargo.toml +++ b/crates/swc_ecma_compat_es2019/Cargo.toml @@ -20,7 +20,7 @@ swc_atoms = { version = "2.0.0", path = "../swc_atoms" } swc_common = { version = "1.0.0", path = "../swc_common" } swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" } diff --git a/crates/swc_ecma_compat_es2020/Cargo.toml b/crates/swc_ecma_compat_es2020/Cargo.toml index d63d42e3f2a3..a3917e58598d 100644 --- a/crates/swc_ecma_compat_es2020/Cargo.toml +++ b/crates/swc_ecma_compat_es2020/Cargo.toml @@ -19,7 +19,7 @@ swc_common = { version = "1.0.0", path = "../swc_common" } swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" } swc_ecma_compat_es2022 = { version = "1.0.0", path = "../swc_ecma_compat_es2022" } swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" } tracing = { workspace = true } diff --git a/crates/swc_ecma_compat_es2021/Cargo.toml b/crates/swc_ecma_compat_es2021/Cargo.toml index 11e7abb9edab..578019ed212b 100644 --- a/crates/swc_ecma_compat_es2021/Cargo.toml +++ b/crates/swc_ecma_compat_es2021/Cargo.toml @@ -19,6 +19,6 @@ swc_atoms = { version = "2.0.0", path = "../swc_atoms" } swc_common = { version = "1.0.0", path = "../swc_common" } swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" } diff --git a/crates/swc_ecma_compat_es2022/Cargo.toml b/crates/swc_ecma_compat_es2022/Cargo.toml index e320406e28ad..3a522d0bd3b6 100644 --- a/crates/swc_ecma_compat_es2022/Cargo.toml +++ b/crates/swc_ecma_compat_es2022/Cargo.toml @@ -23,6 +23,6 @@ swc_ecma_compat_common = { version = "1.0.0", path = "../swc_ecma_compat_co swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_classes = { version = "1.0.0", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" } diff --git a/crates/swc_ecma_compat_es3/Cargo.toml b/crates/swc_ecma_compat_es3/Cargo.toml index 0f466520e173..ad4e8d1cd998 100644 --- a/crates/swc_ecma_compat_es3/Cargo.toml +++ b/crates/swc_ecma_compat_es3/Cargo.toml @@ -18,7 +18,7 @@ tracing = { workspace = true } swc_common = { version = "1.0.0", path = "../swc_common" } swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" } diff --git a/crates/swc_ecma_ext_transforms/Cargo.toml b/crates/swc_ecma_ext_transforms/Cargo.toml index 141be94ea1ea..869fd9fae995 100644 --- a/crates/swc_ecma_ext_transforms/Cargo.toml +++ b/crates/swc_ecma_ext_transforms/Cargo.toml @@ -17,5 +17,5 @@ phf = { workspace = true, features = ["macros"] } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } swc_common = { version = "1.0.0", path = "../swc_common" } swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } diff --git a/crates/swc_ecma_lints/Cargo.toml b/crates/swc_ecma_lints/Cargo.toml index 8311f0b62c9e..5c28798fbe6b 100644 --- a/crates/swc_ecma_lints/Cargo.toml +++ b/crates/swc_ecma_lints/Cargo.toml @@ -28,7 +28,7 @@ swc_config = { version = "1.0.0", path = "../swc_config" } swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast", features = [ "serde", ] } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } [dev-dependencies] diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index 21d1a5b61cbe..69b252273a34 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 = "1.0.0" +version = "1.0.1" [package.metadata.docs.rs] all-features = true @@ -65,8 +65,8 @@ swc_ecma_codegen = { version = "1.0.0", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "1.0.0", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_optimization = { version = "1.0.0", path = "../swc_ecma_transforms_optimization" } -swc_ecma_usage_analyzer = { version = "1.0.0", path = "../swc_ecma_usage_analyzer" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_usage_analyzer = { version = "1.0.1", path = "../swc_ecma_usage_analyzer" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } swc_timer = { version = "1.0.0", path = "../swc_timer" } diff --git a/crates/swc_ecma_preset_env/Cargo.toml b/crates/swc_ecma_preset_env/Cargo.toml index d18e0836ee78..7d6b332f86b2 100644 --- a/crates/swc_ecma_preset_env/Cargo.toml +++ b/crates/swc_ecma_preset_env/Cargo.toml @@ -36,7 +36,7 @@ swc_ecma_transforms = { version = "1.0.0", path = "../swc_ecma_transforms", feat "compat", "proposal", ] } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } [dev-dependencies] diff --git a/crates/swc_ecma_transforms/Cargo.toml b/crates/swc_ecma_transforms/Cargo.toml index 3843e270d916..ae04dfa7c4f9 100644 --- a/crates/swc_ecma_transforms/Cargo.toml +++ b/crates/swc_ecma_transforms/Cargo.toml @@ -42,7 +42,7 @@ swc_ecma_transforms_optimization = { version = "1.0.0", path = "../swc_ecma_tran swc_ecma_transforms_proposal = { version = "1.0.0", path = "../swc_ecma_transforms_proposal", optional = true } swc_ecma_transforms_react = { version = "1.0.0", path = "../swc_ecma_transforms_react", optional = true } swc_ecma_transforms_typescript = { version = "1.0.0", path = "../swc_ecma_transforms_typescript", optional = true } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } [dev-dependencies] diff --git a/crates/swc_ecma_transforms_base/Cargo.toml b/crates/swc_ecma_transforms_base/Cargo.toml index e9f851c3bbc9..ea56bdb34330 100644 --- a/crates/swc_ecma_transforms_base/Cargo.toml +++ b/crates/swc_ecma_transforms_base/Cargo.toml @@ -32,7 +32,7 @@ swc_atoms = { version = "2.0.0", path = "../swc_atoms" } swc_common = { version = "1.0.0", path = "../swc_common" } swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "1.0.0", path = "../swc_ecma_parser" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } [dev-dependencies] diff --git a/crates/swc_ecma_transforms_classes/Cargo.toml b/crates/swc_ecma_transforms_classes/Cargo.toml index 206de0a6f1d2..2dc2b200839e 100644 --- a/crates/swc_ecma_transforms_classes/Cargo.toml +++ b/crates/swc_ecma_transforms_classes/Cargo.toml @@ -16,5 +16,5 @@ swc_atoms = { version = "2.0.0", path = "../swc_atoms" } swc_common = { version = "1.0.0", path = "../swc_common" } swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } diff --git a/crates/swc_ecma_transforms_compat/Cargo.toml b/crates/swc_ecma_transforms_compat/Cargo.toml index c34d45445e1b..4de1d8a724c3 100644 --- a/crates/swc_ecma_transforms_compat/Cargo.toml +++ b/crates/swc_ecma_transforms_compat/Cargo.toml @@ -47,7 +47,7 @@ swc_ecma_compat_es3 = { version = "1.0.0", path = "../swc_ecma_compat_es swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_classes = { version = "1.0.0", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" } diff --git a/crates/swc_ecma_transforms_module/Cargo.toml b/crates/swc_ecma_transforms_module/Cargo.toml index 31a9c456a7fc..6454b178a02b 100644 --- a/crates/swc_ecma_transforms_module/Cargo.toml +++ b/crates/swc_ecma_transforms_module/Cargo.toml @@ -33,7 +33,7 @@ swc_ecma_loader = { version = "1.0.0", path = "../swc_ecma_loader", features = [ ] } swc_ecma_parser = { version = "1.0.0", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } [dev-dependencies] diff --git a/crates/swc_ecma_transforms_optimization/Cargo.toml b/crates/swc_ecma_transforms_optimization/Cargo.toml index 43abc28a053e..90570c813bf0 100644 --- a/crates/swc_ecma_transforms_optimization/Cargo.toml +++ b/crates/swc_ecma_transforms_optimization/Cargo.toml @@ -37,7 +37,7 @@ swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "1.0.0", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } swc_fast_graph = { version = "2.0.0", path = "../swc_fast_graph" } diff --git a/crates/swc_ecma_transforms_proposal/Cargo.toml b/crates/swc_ecma_transforms_proposal/Cargo.toml index a45819069547..5aa2f05bee08 100644 --- a/crates/swc_ecma_transforms_proposal/Cargo.toml +++ b/crates/swc_ecma_transforms_proposal/Cargo.toml @@ -29,7 +29,7 @@ swc_ecma_loader = { version = "1.0.0", path = "../swc_ecma_loader", swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_classes = { version = "1.0.0", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } [dev-dependencies] diff --git a/crates/swc_ecma_transforms_react/Cargo.toml b/crates/swc_ecma_transforms_react/Cargo.toml index 628514272dad..74d15578d14d 100644 --- a/crates/swc_ecma_transforms_react/Cargo.toml +++ b/crates/swc_ecma_transforms_react/Cargo.toml @@ -35,7 +35,7 @@ swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "1.0.0", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } [dev-dependencies] diff --git a/crates/swc_ecma_transforms_testing/Cargo.toml b/crates/swc_ecma_transforms_testing/Cargo.toml index d5fccb9fcbf1..4cce4da29a5d 100644 --- a/crates/swc_ecma_transforms_testing/Cargo.toml +++ b/crates/swc_ecma_transforms_testing/Cargo.toml @@ -30,6 +30,6 @@ swc_ecma_codegen = { version = "1.0.0", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "1.0.0", path = "../swc_ecma_parser" } swc_ecma_testing = { version = "1.0.0", path = "../swc_ecma_testing" } swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } testing = { version = "1.0.0", path = "../testing" } diff --git a/crates/swc_ecma_transforms_typescript/Cargo.toml b/crates/swc_ecma_transforms_typescript/Cargo.toml index fe8ddf8cea14..62cf9cadbaaf 100644 --- a/crates/swc_ecma_transforms_typescript/Cargo.toml +++ b/crates/swc_ecma_transforms_typescript/Cargo.toml @@ -21,7 +21,7 @@ swc_common = { version = "1.0.0", path = "../swc_common" } swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_react = { version = "1.0.0", path = "../swc_ecma_transforms_react" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } [dev-dependencies] diff --git a/crates/swc_ecma_usage_analyzer/Cargo.toml b/crates/swc_ecma_usage_analyzer/Cargo.toml index 07f4a9ec6845..92d9ceff5381 100644 --- a/crates/swc_ecma_usage_analyzer/Cargo.toml +++ b/crates/swc_ecma_usage_analyzer/Cargo.toml @@ -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 = "1.0.0" +version = "1.0.1" [package.metadata.docs.rs] all-features = true @@ -30,6 +30,6 @@ tracing = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } swc_common = { version = "1.0.0", path = "../swc_common" } swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } swc_timer = { version = "1.0.0", path = "../swc_timer" } diff --git a/crates/swc_ecma_utils/Cargo.toml b/crates/swc_ecma_utils/Cargo.toml index bab282484f51..a9c5f906ca0e 100644 --- a/crates/swc_ecma_utils/Cargo.toml +++ b/crates/swc_ecma_utils/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_utils" repository = "https://github.com/swc-project/swc.git" -version = "1.0.0" +version = "1.0.1" [package.metadata.docs.rs] all-features = true diff --git a/crates/swc_ecmascript/Cargo.toml b/crates/swc_ecmascript/Cargo.toml index 8f73cf80c253..ecff56f8296a 100644 --- a/crates/swc_ecmascript/Cargo.toml +++ b/crates/swc_ecmascript/Cargo.toml @@ -40,12 +40,12 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"] [dependencies] swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "1.0.0", path = "../swc_ecma_codegen", optional = true } -swc_ecma_minifier = { version = "1.0.0", path = "../swc_ecma_minifier", optional = true } +swc_ecma_minifier = { version = "1.0.1", path = "../swc_ecma_minifier", optional = true } swc_ecma_parser = { version = "1.0.0", path = "../swc_ecma_parser", optional = true, default-features = false } swc_ecma_preset_env = { version = "1.0.0", path = "../swc_ecma_preset_env", optional = true } swc_ecma_quote = { version = "1.0.0", path = "../swc_ecma_quote", optional = true } swc_ecma_transforms = { version = "1.0.0", path = "../swc_ecma_transforms", optional = true } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils", optional = true } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils", optional = true } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit", optional = true } [dev-dependencies] diff --git a/crates/swc_estree_compat/Cargo.toml b/crates/swc_estree_compat/Cargo.toml index e80a43776a3f..095d1a35915c 100644 --- a/crates/swc_estree_compat/Cargo.toml +++ b/crates/swc_estree_compat/Cargo.toml @@ -31,7 +31,7 @@ swc_common = { version = "1.0.0", path = "../swc_common", features = [ ] } swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "1.0.0", path = "../swc_ecma_parser" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } swc_estree_ast = { version = "1.0.0", path = "../swc_estree_ast" } swc_node_comments = { version = "1.0.0", path = "../swc_node_comments/" } @@ -41,7 +41,7 @@ codspeed-criterion-compat = { workspace = true } criterion = { workspace = true } pretty_assertions = { workspace = true } -swc = { version = "1.0.0", path = "../swc" } +swc = { version = "1.0.1", path = "../swc" } swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "1.0.0", path = "../swc_ecma_parser" } swc_ecma_transforms = { version = "1.0.0", path = "../swc_ecma_transforms/" } diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 41892b4432f9..b3df6d710edc 100644 --- a/crates/swc_html_minifier/Cargo.toml +++ b/crates/swc_html_minifier/Cargo.toml @@ -36,7 +36,7 @@ swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "1.0.0", path = "../swc_ecma_codegen", features = [ "serde-impl", ] } -swc_ecma_minifier = { version = "1.0.0", path = "../swc_ecma_minifier", features = [ +swc_ecma_minifier = { version = "1.0.1", path = "../swc_ecma_minifier", features = [ "extra-serde", ] } swc_ecma_parser = { version = "1.0.0", path = "../swc_ecma_parser" } diff --git a/crates/swc_node_bundler/Cargo.toml b/crates/swc_node_bundler/Cargo.toml index 40edbee8810c..54c1d1b620c7 100644 --- a/crates/swc_node_bundler/Cargo.toml +++ b/crates/swc_node_bundler/Cargo.toml @@ -29,7 +29,7 @@ serde_json = { workspace = true } tracing = { workspace = true } string_enum = { version = "1.0.0", path = "../string_enum" } -swc = { version = "1.0.0", path = "../swc" } +swc = { version = "1.0.1", path = "../swc" } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } swc_bundler = { version = "1.0.0", path = "../swc_bundler", features = [ "concurrent", @@ -42,7 +42,7 @@ swc_ecma_codegen = { version = "1.0.0", path = "../swc_ecma_codegen" } swc_ecma_loader = { version = "1.0.0", path = "../swc_ecma_loader" } swc_ecma_parser = { version = "1.0.0", path = "../swc_ecma_parser" } swc_ecma_transforms = { version = "1.0.0", path = "../swc_ecma_transforms" } -swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" } swc_malloc = { version = "1.0.0", path = "../swc_malloc" }