Skip to content

Commit

Permalink
chore: Publish crates with swc_core v10.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Jan 9, 2025
1 parent 85fb16c commit 624680b
Show file tree
Hide file tree
Showing 41 changed files with 60 additions and 61 deletions.
6 changes: 0 additions & 6 deletions .changeset/pretty-news-chew.md

This file was deleted.

17 changes: 11 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
# Changelog
## [unreleased]

### Bug Fixes



- **(es/minifier)** Improve DCE ([#9853](https://github.com/swc-project/swc/issues/9853)) ([85fb16c](https://github.com/swc-project/swc/commit/85fb16c3a241bbd87066a119357ad560e336457d))


- **(es/parser)** Fix context of dynamic import type ([#9852](https://github.com/swc-project/swc/issues/9852)) ([caa7f37](https://github.com/swc-project/swc/commit/caa7f370ff2003983a3448a2b7e6f0f6d6224b86))

## [1.10.6] - 2025-01-07

### Performance
Expand Down Expand Up @@ -1518,12 +1529,6 @@



- **(es/lexer)** Optimize lexer ([#9075](https://github.com/swc-project/swc/issues/9075)) ([6426928](https://github.com/swc-project/swc/commit/6426928b912baa6573b902d7d3c85bcd49b2e823))


- **(es/lexer)** Make lexing of string literals faster ([#9077](https://github.com/swc-project/swc/issues/9077)) ([373bac5](https://github.com/swc-project/swc/commit/373bac55aaffbe1f6e001c7c6d490797de45114e))


- **(es/lexer)** Reduce allocation while lexing identifiers ([#9076](https://github.com/swc-project/swc/issues/9076)) ([69f00b8](https://github.com/swc-project/swc/commit/69f00b85d465e882ec33642d6e8ed22dbe3c3fb2))


Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/dbg-swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "7.0.1", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "7.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "6.0.0", path = "../swc_error_reporters" }
Expand Down
2 changes: 1 addition & 1 deletion crates/jsdoc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ anyhow = { workspace = true }
dashmap = { workspace = true }

swc_ecma_ast = { version = "5.0.1", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
testing = { version = "5.0.0", path = "../testing" }
4 changes: 2 additions & 2 deletions crates/swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", features = [
"tsc",
] }
swc_ecma_minifier = { version = "7.0.1", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "9.0.0", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "9.0.0", path = "../swc_ecma_transforms", features = [
"compat",
Expand All @@ -101,7 +101,7 @@ swc_ecma_transforms = { version = "9.0.0", path = "../swc_ecma_transforms", feat
] }
swc_ecma_transforms_base = { version = "7.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "8.0.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "7.0.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "7.0.1", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "7.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "6.0.0", path = "../swc_error_reporters" }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "7.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "7.0.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "7.0.1", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "7.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "6.0.0", path = "../swc_fast_graph/" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_cli_impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ tracing-futures = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
walkdir = { workspace = true }

swc_core = { version = "10.0.1", features = [
swc_core = { version = "10.0.2", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_compiler_base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ swc_config = { version = "1.0.0", path = "../swc_config" }
swc_ecma_ast = { version = "5.0.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "7.0.1", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_timer = { version = "1.0.0", path = "../swc_timer" }

Expand Down
6 changes: 3 additions & 3 deletions crates/swc_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = { workspace = true }
license = { workspace = true }
name = "swc_core"
repository = { workspace = true }
version = "10.0.1"
version = "10.0.2"
[package.metadata.docs.rs]
features = [
"allocator_node",
Expand Down Expand Up @@ -358,13 +358,13 @@ swc_ecma_codegen = { optional = true, version = "5.0.1", path =
swc_ecma_lints = { optional = true, version = "7.0.0", path = "../swc_ecma_lints" }
swc_ecma_loader = { optional = true, version = "5.0.0", path = "../swc_ecma_loader" }
swc_ecma_minifier = { optional = true, version = "7.0.1", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { optional = true, version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { optional = true, version = "9.0.0", path = "../swc_ecma_preset_env" }
swc_ecma_quote_macros = { optional = true, version = "6.0.0", path = "../swc_ecma_quote_macros" }
swc_ecma_transforms_base = { optional = true, version = "7.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { optional = true, version = "8.0.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { optional = true, version = "8.0.0", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_optimization = { optional = true, version = "7.0.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { optional = true, version = "7.0.1", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_proposal = { optional = true, version = "7.0.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { optional = true, version = "7.0.0", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_testing = { optional = true, version = "7.0.0", path = "../swc_ecma_transforms_testing" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ swc_allocator = { version = "2.0.0", path = "../swc_allocator" }
swc_common = { version = "5.0.0", path = "../swc_common", features = [
"sourcemap",
] }
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_testing = { version = "5.0.0", path = "../swc_ecma_testing" }
swc_malloc = { version = "1.0.0", path = "../swc_malloc" }
testing = { version = "5.0.0", path = "../testing" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_bugfixes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
tracing = { workspace = true }

[dev-dependencies]
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "7.0.0", path = "../swc_ecma_transforms_testing" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_es2015/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
tracing = { workspace = true }

[dev-dependencies]
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "7.0.0", path = "../swc_ecma_transforms_testing" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_es2016/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
tracing = { workspace = true }

[dev-dependencies]
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "7.0.0", path = "../swc_ecma_transforms_testing" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_es2017/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }

[dev-dependencies]
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "7.0.0", path = "../swc_ecma_transforms_testing" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_es2018/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }

[dev-dependencies]
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "7.0.0", path = "../swc_ecma_transforms_testing" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_es2019/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }

[dev-dependencies]
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "7.0.0", path = "../swc_ecma_transforms_testing" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_es2020/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
tracing = { workspace = true }

[dev-dependencies]
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "7.0.0", path = "../swc_ecma_transforms_testing" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_es3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }

[dev-dependencies]
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "7.0.0", path = "../swc_ecma_transforms_testing" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_lints/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ codspeed-criterion-compat = { workspace = true }
criterion = { workspace = true }
pretty_assertions = { workspace = true }
swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_testing = { version = "5.0.0", path = "../swc_ecma_testing" }
swc_ecma_transforms_base = { version = "7.0.0", path = "../swc_ecma_transforms_base" }
swc_malloc = { version = "1.0.0", path = "../swc_malloc" }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_minifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ swc_ecma_ast = { version = "5.0.1", path = "../swc_ecma_ast", features = [
"serde",
] }
swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "7.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "7.0.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "7.0.1", path = "../swc_ecma_transforms_optimization" }
swc_ecma_usage_analyzer = { version = "7.0.0", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { version = "7.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "examples/**/*.rs"]
license = { workspace = true }
name = "swc_ecma_parser"
repository = { workspace = true }
version = "6.0.1"
version = "6.0.2"

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_preset_env/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ criterion = { workspace = true }
pretty_assertions = { workspace = true }

swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
testing = { version = "5.0.0", path = "../testing" }

[[bench]]
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_quote_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ syn = { workspace = true }
swc_atoms = { version = "3.0.2", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.1", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_macros_common = { version = "1.0.0", path = "../swc_macros_common" }
4 changes: 2 additions & 2 deletions crates/swc_ecma_transforms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ swc_ecma_ast = { version = "5.0.1", path = "../swc_ecma_ast"
swc_ecma_transforms_base = { version = "7.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "8.0.0", path = "../swc_ecma_transforms_compat", optional = true }
swc_ecma_transforms_module = { version = "8.0.0", path = "../swc_ecma_transforms_module", optional = true }
swc_ecma_transforms_optimization = { version = "7.0.0", path = "../swc_ecma_transforms_optimization", optional = true }
swc_ecma_transforms_optimization = { version = "7.0.1", path = "../swc_ecma_transforms_optimization", optional = true }
swc_ecma_transforms_proposal = { version = "7.0.0", path = "../swc_ecma_transforms_proposal", optional = true }
swc_ecma_transforms_react = { version = "7.0.0", path = "../swc_ecma_transforms_react", optional = true }
swc_ecma_transforms_typescript = { version = "7.0.0", path = "../swc_ecma_transforms_typescript", optional = true }
Expand All @@ -51,6 +51,6 @@ sourcemap = { workspace = true }
tempfile = { workspace = true }

swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "7.0.0", path = "../swc_ecma_transforms_testing" }
testing = { version = "5.0.0", path = "../testing" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ tracing = { workspace = true }
swc_atoms = { version = "3.0.2", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.1", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_utils = { version = "7.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_parallel = { version = "1.0.1", path = "../swc_parallel", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_compat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@ swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
[dev-dependencies]
serde_json = { workspace = true }

swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "7.0.0", path = "../swc_ecma_transforms_testing" }
testing = { version = "5.0.0", path = "../testing" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_module/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ swc_ecma_ast = { version = "5.0.1", path = "../swc_ecma_ast" }
swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", features = [
"node",
] }
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "7.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "7.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_transforms_optimization/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = { workspace = true }
name = "swc_ecma_transforms_optimization"
repository = { workspace = true }
version = "7.0.0"
version = "7.0.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[lib]
Expand All @@ -34,7 +34,7 @@ tracing = { workspace = true }
swc_atoms = { version = "3.0.2", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.1", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "7.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "7.0.0", path = "../swc_ecma_utils" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_proposal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
serde_json = { workspace = true }

swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_transforms_compat = { version = "8.0.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_testing = { version = "7.0.0", path = "../swc_ecma_transforms_testing" }
testing = { version = "5.0.0", path = "../testing" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_react/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ swc_atoms = { version = "3.0.2", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_config = { version = "1.0.0", path = "../swc_config" }
swc_ecma_ast = { version = "5.0.1", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "7.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "7.0.0", path = "../swc_ecma_utils" }
Expand Down
Loading

0 comments on commit 624680b

Please sign in to comment.