Skip to content

Commit

Permalink
chore: Publish crates with swc_core v3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Oct 31, 2024
1 parent bcf05de commit 11deca0
Show file tree
Hide file tree
Showing 47 changed files with 89 additions and 95 deletions.
6 changes: 0 additions & 6 deletions .changeset/fifty-ears-press.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/fluffy-eyes-hope.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/poor-tools-arrive.md

This file was deleted.

12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@

- **(es/generator)** Fix code generation for `break` in nested while ([#9684](https://github.com/swc-project/swc/issues/9684)) ([65872af](https://github.com/swc-project/swc/commit/65872afaf151412be5f14820080325b920901bfb))


- **(es/parser)** Parse `await using()` call ([#9693](https://github.com/swc-project/swc/issues/9693)) ([bcf05de](https://github.com/swc-project/swc/commit/bcf05de2ebe755a54ec8a6b93311b1686494c578))


- **(es/resolver)** Skip resolving lowercase `JSXIdentifiers` ([#9686](https://github.com/swc-project/swc/issues/9686)) ([6ed1715](https://github.com/swc-project/swc/commit/6ed1715b93875cd4588352a784ed876bf183df5d))


- **(es/types)** Add `jsc.experimental.keepImportAssertions` to types ([#9691](https://github.com/swc-project/swc/issues/9691)) ([4b4dcfa](https://github.com/swc-project/swc/commit/4b4dcfa4d8532c84762b19737b66474e97480cef))

### Features


Expand All @@ -29,6 +38,9 @@
- **(es)** Cache `current_dir()` system calls ([#9683](https://github.com/swc-project/swc/issues/9683)) ([7aab945](https://github.com/swc-project/swc/commit/7aab945a2199be06e20a35ec0d197fc817a48d9d))


- **(es/lints)** Disable lints by default ([#9689](https://github.com/swc-project/swc/issues/9689)) ([4d887d0](https://github.com/swc-project/swc/commit/4d887d062b299b42b1a6529dfac5f22c3fd49903))


- **(visit)** Introduce `Pass` API and adjust visitor APIs for it ([#9680](https://github.com/swc-project/swc/issues/9680)) ([581aafb](https://github.com/swc-project/swc/commit/581aafb4dfbbcf9b834e3b578cad83fec452a062))

## [1.7.40] - 2024-10-26
Expand Down
8 changes: 4 additions & 4 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/binding_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ binding_wasm = [

[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "3.0.1", path = "../swc" }
swc = { optional = true, version = "3.0.2", path = "../swc" }
swc_common = { optional = true, version = "2.0.1", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "2.0.0", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "3.0.0", path = "../swc_ecma_transforms" }
Expand Down
4 changes: 2 additions & 2 deletions crates/dbg-swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ swc_ecma_codegen = { version = "2.0.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "3.0.0", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "2.0.0", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "3.0.0", path = "../swc_error_reporters" }
swc_timer = { version = "1.0.0", path = "../swc_timer" }
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 = "2.0.0", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
testing = { version = "2.0.0", path = "../testing" }
6 changes: 3 additions & 3 deletions crates/swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc"
repository = "https://github.com/swc-project/swc.git"
version = "3.0.1"
version = "3.0.2"

[lib]
bench = false
Expand Down Expand Up @@ -86,7 +86,7 @@ swc_ecma_loader = { version = "2.0.0", path = "../swc_ecma_loader", features = [
"tsc",
] }
swc_ecma_minifier = { version = "3.0.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "3.0.0", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "3.0.0", path = "../swc_ecma_transforms", features = [
"compat",
Expand All @@ -96,7 +96,7 @@ swc_ecma_transforms = { version = "3.0.0", path = "../swc_ecma_transforms", feat
"react",
"typescript",
] }
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "3.0.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "3.0.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" }
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,8 +42,8 @@ swc_common = { version = "2.0.1", path = "../swc_common" }
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "2.0.0", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "2.0.0", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "3.0.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "2.0.0", path = "../swc_ecma_visit" }
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 = "3.0.1", features = [
swc_core = { version = "3.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 = "2.0.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "2.0.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "3.0.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "2.0.0", path = "../swc_ecma_visit" }
swc_timer = { version = "1.0.0", path = "../swc_timer" }

Expand Down
8 changes: 4 additions & 4 deletions crates/swc_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_core"
repository = "https://github.com/swc-project/swc.git"
version = "3.0.1"
version = "3.0.2"
[package.metadata.docs.rs]
features = [
"allocator_node",
Expand Down Expand Up @@ -339,7 +339,7 @@ once_cell = { workspace = true, optional = true }

# swc_* dependencies
binding_macros = { optional = true, version = "3.0.0", path = "../binding_macros" }
swc = { optional = true, version = "3.0.1", path = "../swc" }
swc = { optional = true, version = "3.0.2", path = "../swc" }
swc_atoms = { optional = true, version = "2.0.0", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "3.0.0", path = "../swc_bundler" }
swc_cached = { optional = true, version = "1.0.0", path = "../swc_cached" }
Expand All @@ -358,10 +358,10 @@ swc_ecma_codegen = { optional = true, version = "2.0.0", path =
swc_ecma_lints = { optional = true, version = "3.0.0", path = "../swc_ecma_lints" }
swc_ecma_loader = { optional = true, version = "2.0.0", path = "../swc_ecma_loader" }
swc_ecma_minifier = { optional = true, version = "3.0.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "3.0.0", path = "../swc_ecma_parser" }
swc_ecma_parser = { optional = true, version = "3.0.1", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { optional = true, version = "3.0.0", path = "../swc_ecma_preset_env" }
swc_ecma_quote_macros = { optional = true, version = "3.0.0", path = "../swc_ecma_quote_macros" }
swc_ecma_transforms_base = { optional = true, version = "3.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { optional = true, version = "3.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { optional = true, version = "3.0.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { optional = true, version = "3.0.0", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_optimization = { optional = true, version = "3.0.0", path = "../swc_ecma_transforms_optimization" }
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 = "1.0.0", path = "../swc_allocator" }
swc_common = { version = "2.0.1", path = "../swc_common", features = [
"sourcemap",
] }
swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
swc_ecma_testing = { version = "2.0.0", path = "../swc_ecma_testing" }
swc_malloc = { version = "1.0.0", path = "../swc_malloc" }
testing = { version = "2.0.0", path = "../testing" }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_compat_bugfixes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "2.0.1", path = "../swc_common" }
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
swc_ecma_compat_es2015 = { version = "3.0.1", path = "../swc_ecma_compat_es2015" }
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "2.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
tracing = { workspace = true }

[dev-dependencies]
swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "3.0.0", path = "../swc_ecma_transforms_testing" }
4 changes: 2 additions & 2 deletions crates/swc_ecma_compat_es2015/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ swc_common = { version = "2.0.1", path = "../swc_common" }
swc_config = { version = "1.0.0", path = "../swc_config" }
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "3.0.0", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "3.0.0", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" }
Expand All @@ -36,5 +36,5 @@ swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
tracing = { workspace = true }

[dev-dependencies]
swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "3.0.0", path = "../swc_ecma_transforms_testing" }
4 changes: 2 additions & 2 deletions crates/swc_ecma_compat_es2016/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ version = "3.0.0"
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "2.0.1", path = "../swc_common" }
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "2.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
tracing = { workspace = true }

[dev-dependencies]
swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "3.0.0", path = "../swc_ecma_transforms_testing" }
4 changes: 2 additions & 2 deletions crates/swc_ecma_compat_es2017/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ tracing = { workspace = true }
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "2.0.1", path = "../swc_common" }
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "2.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }

[dev-dependencies]
swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "3.0.0", path = "../swc_ecma_transforms_testing" }
4 changes: 2 additions & 2 deletions crates/swc_ecma_compat_es2018/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "2.0.1", path = "../swc_common" }
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "3.0.0", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "2.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }

[dev-dependencies]
swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "3.0.0", path = "../swc_ecma_transforms_testing" }
4 changes: 2 additions & 2 deletions crates/swc_ecma_compat_es2019/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ tracing = { workspace = true }
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "2.0.1", path = "../swc_common" }
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "2.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }

[dev-dependencies]
swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "3.0.0", path = "../swc_ecma_transforms_testing" }
4 changes: 2 additions & 2 deletions crates/swc_ecma_compat_es2020/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "2.0.1", path = "../swc_common" }
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
swc_ecma_compat_es2022 = { version = "3.0.0", path = "../swc_ecma_compat_es2022" }
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "2.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
tracing = { workspace = true }

[dev-dependencies]
swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "3.0.0", path = "../swc_ecma_transforms_testing" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_es2021/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ tracing = { workspace = true }
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "2.0.1", path = "../swc_common" }
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "2.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_es2022/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "2.0.1", path = "../swc_common" }
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "3.0.0", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "3.0.0", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_compat_es3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ tracing = { workspace = true }

swc_common = { version = "2.0.1", path = "../swc_common" }
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_base = { version = "3.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "2.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }

[dev-dependencies]
swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "3.0.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "3.0.0", path = "../swc_ecma_transforms_testing" }
Loading

0 comments on commit 11deca0

Please sign in to comment.