Skip to content

Commit

Permalink
chore: Publish crates with swc_core v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Oct 15, 2024
1 parent 3d3e434 commit 56c4416
Show file tree
Hide file tree
Showing 43 changed files with 77 additions and 78 deletions.
6 changes: 0 additions & 6 deletions .changeset/beige-moles-grow.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/honest-cooks-dream.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/lazy-ladybugs-jump.md

This file was deleted.

24 changes: 21 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))


Expand All @@ -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
Expand Down Expand Up @@ -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


Expand Down
10 changes: 5 additions & 5 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 = "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" }
Expand Down
2 changes: 1 addition & 1 deletion crates/dbg-swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
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 = "1.0.0"
version = "1.0.1"

[lib]
bench = false
Expand Down Expand Up @@ -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 = [
Expand All @@ -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" }
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 @@ -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/" }
Expand All @@ -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" }
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 = "1.0.0", features = [
swc_core = { version = "1.0.1", 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 @@ -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" }
Expand Down
10 changes: 5 additions & 5 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 = "1.0.0"
version = "1.0.1"
[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 = "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" }
Expand All @@ -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" }
Expand All @@ -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" }
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 @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
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 @@ -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 }
Expand Down
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 @@ -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 }
Expand Down
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 @@ -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" }

Expand Down
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 @@ -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" }

Expand Down
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 @@ -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" }

Expand Down
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 @@ -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 }
Expand Down
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 @@ -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" }
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 @@ -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" }
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 @@ -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" }

Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_ext_transforms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_lints/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
6 changes: 3 additions & 3 deletions crates/swc_ecma_minifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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" }

Expand Down
Loading

0 comments on commit 56c4416

Please sign in to comment.