mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 00:32:15 +03:00
chore: Publish crates with swc_core
v0.106.1
This commit is contained in:
parent
8d18935c6d
commit
a0c0ceecfe
@ -1,6 +0,0 @@
|
||||
---
|
||||
swc_core: patch
|
||||
swc_ecma_loader: patch
|
||||
---
|
||||
|
||||
fix(es/module): Fix jsc.paths using absolute paths with dots in a filename for an alias
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
swc_ecma_parser: patch
|
||||
swc_core: patch
|
||||
---
|
||||
|
||||
fix(es/parser): Fix failure of TS instantiation followed by satisfies
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
swc_core: patch
|
||||
swc_cli_impl: patch
|
||||
---
|
||||
|
||||
fix(es/codegen): Emit .d.ts when using --out-file
|
20
CHANGELOG.md
20
CHANGELOG.md
@ -1,4 +1,24 @@
|
||||
# Changelog
|
||||
## [unreleased]
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
|
||||
|
||||
- **(es/codegen)** Emit .d.ts when using --out-file ([#9582](https://github.com/swc-project/swc/issues/9582)) ([3d9d641](https://github.com/swc-project/swc/commit/3d9d641f8b49725014e7d7a72a6f0a5dfe01f42c))
|
||||
|
||||
|
||||
- **(es/module)** Fix `jsc.paths` using absolute paths with dots in a filename for an alias ([#9595](https://github.com/swc-project/swc/issues/9595)) ([74e3d04](https://github.com/swc-project/swc/commit/74e3d0466abcd7422620623d8adcceac04ce26c9))
|
||||
|
||||
|
||||
- **(es/parser)** Fix failure of TS instantiation followed by satisfies ([#9583](https://github.com/swc-project/swc/issues/9583)) ([77900d8](https://github.com/swc-project/swc/commit/77900d808e2a3be2e62b74022c88a81b26a73f86))
|
||||
|
||||
### Miscellaneous Tasks
|
||||
|
||||
|
||||
|
||||
- **(es)** Add helpers ([#9586](https://github.com/swc-project/swc/issues/9586)) ([b94a0e1](https://github.com/swc-project/swc/commit/b94a0e1fd2b900b05c5f18d3d993a74ff9cc6e7d))
|
||||
|
||||
## [1.7.28] - 2024-09-24
|
||||
|
||||
### Bug Fixes
|
||||
|
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -4022,7 +4022,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_cli_impl"
|
||||
version = "0.24.0"
|
||||
version = "0.24.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"assert_cmd",
|
||||
@ -4130,7 +4130,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_core"
|
||||
version = "0.106.0"
|
||||
version = "0.106.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"binding_macros",
|
||||
@ -4651,7 +4651,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_loader"
|
||||
version = "0.52.0"
|
||||
version = "0.52.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"dashmap 5.5.3",
|
||||
@ -4716,7 +4716,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_parser"
|
||||
version = "0.152.0"
|
||||
version = "0.152.1"
|
||||
dependencies = [
|
||||
"codspeed-criterion-compat",
|
||||
"criterion",
|
||||
|
@ -36,7 +36,7 @@ swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_minifier = { version = "0.208.0", path = "../swc_ecma_minifier", features = [
|
||||
"concurrent",
|
||||
] }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_base = { version = "0.149.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
|
||||
swc_error_reporters = { version = "1.0.0", path = "../swc_error_reporters" }
|
||||
|
@ -27,5 +27,5 @@ anyhow = { workspace = true }
|
||||
dashmap = { workspace = true }
|
||||
|
||||
swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
testing = { version = "0.42.0", path = "../testing" }
|
||||
|
@ -80,13 +80,13 @@ swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_ext_transforms = { version = "0.123.0", path = "../swc_ecma_ext_transforms" }
|
||||
swc_ecma_lints = { version = "0.104.0", path = "../swc_ecma_lints" }
|
||||
swc_ecma_loader = { version = "0.52.0", path = "../swc_ecma_loader", features = [
|
||||
swc_ecma_loader = { version = "0.52.1", path = "../swc_ecma_loader", features = [
|
||||
"cache",
|
||||
"node",
|
||||
"tsc",
|
||||
] }
|
||||
swc_ecma_minifier = { version = "0.208.0", path = "../swc_ecma_minifier" }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_preset_env = { version = "0.221.0", path = "../swc_ecma_preset_env" }
|
||||
swc_ecma_transforms = { version = "0.243.0", path = "../swc_ecma_transforms", features = [
|
||||
"compat",
|
||||
|
@ -41,8 +41,8 @@ swc_atoms = { version = "1.0.0", path = "../swc_atoms" }
|
||||
swc_common = { version = "0.40.0", path = "../swc_common" }
|
||||
swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_loader = { version = "0.52.0", path = "../swc_ecma_loader" }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_loader = { version = "0.52.1", path = "../swc_ecma_loader" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_base = { version = "0.149.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_optimization = { version = "0.212.0", path = "../swc_ecma_transforms_optimization" }
|
||||
swc_ecma_utils = { version = "0.137.0", path = "../swc_ecma_utils" }
|
||||
@ -59,7 +59,7 @@ sha1 = { workspace = true }
|
||||
tempfile = { workspace = true }
|
||||
url = { workspace = true }
|
||||
|
||||
swc_ecma_loader = { version = "0.52.0", path = "../swc_ecma_loader", features = [
|
||||
swc_ecma_loader = { version = "0.52.1", path = "../swc_ecma_loader", features = [
|
||||
"node",
|
||||
"cache",
|
||||
] }
|
||||
|
@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_cli_impl"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.24.0"
|
||||
version = "0.24.1"
|
||||
|
||||
[[bin]]
|
||||
name = "swc"
|
||||
@ -39,7 +39,7 @@ tracing-futures = { workspace = true }
|
||||
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
||||
walkdir = { workspace = true }
|
||||
|
||||
swc_core = { version = "0.106.0", features = [
|
||||
swc_core = { version = "0.106.1", features = [
|
||||
"trace_macro",
|
||||
"common_concurrent",
|
||||
"base_concurrent",
|
||||
|
@ -31,7 +31,7 @@ swc_config = { version = "0.1.13", path = "../swc_config" }
|
||||
swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_minifier = { version = "0.208.0", path = "../swc_ecma_minifier" }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
|
||||
swc_timer = { version = "0.27.0", path = "../swc_timer" }
|
||||
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_core"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.106.0"
|
||||
version = "0.106.1"
|
||||
[package.metadata.docs.rs]
|
||||
features = [
|
||||
"allocator_node",
|
||||
@ -356,9 +356,9 @@ swc_css_visit = { optional = true, version = "0.146.0", path
|
||||
swc_ecma_ast = { optional = true, version = "0.121.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_codegen = { optional = true, version = "0.158.0", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_lints = { optional = true, version = "0.104.0", path = "../swc_ecma_lints" }
|
||||
swc_ecma_loader = { optional = true, version = "0.52.0", path = "../swc_ecma_loader" }
|
||||
swc_ecma_loader = { optional = true, version = "0.52.1", path = "../swc_ecma_loader" }
|
||||
swc_ecma_minifier = { optional = true, version = "0.208.0", path = "../swc_ecma_minifier" }
|
||||
swc_ecma_parser = { optional = true, version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { optional = true, version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_preset_env = { optional = true, version = "0.221.0", path = "../swc_ecma_preset_env" }
|
||||
swc_ecma_quote_macros = { optional = true, version = "0.63.0", path = "../swc_ecma_quote_macros" }
|
||||
swc_ecma_transforms_base = { optional = true, version = "0.149.0", path = "../swc_ecma_transforms_base" }
|
||||
|
@ -41,7 +41,7 @@ swc_allocator = { version = "0.1.7", path = "../swc_allocator" }
|
||||
swc_common = { version = "0.40.0", path = "../swc_common", features = [
|
||||
"sourcemap",
|
||||
] }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_testing = { version = "0.29.0", path = "../swc_ecma_testing" }
|
||||
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
|
||||
testing = { version = "0.42.0", path = "../testing" }
|
||||
|
@ -22,5 +22,5 @@ swc_trace_macro = { version = "1.0.0", path = "../swc_trace_macro" }
|
||||
tracing = { workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_testing = { version = "0.152.0", path = "../swc_ecma_transforms_testing" }
|
||||
|
@ -36,5 +36,5 @@ swc_trace_macro = { version = "1.0.0", path = "../swc_trace_macro" }
|
||||
tracing = { workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_testing = { version = "0.152.0", path = "../swc_ecma_transforms_testing" }
|
||||
|
@ -24,5 +24,5 @@ swc_trace_macro = { version = "1.0.0", path = "../swc_trace_macro" }
|
||||
tracing = { workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_testing = { version = "0.152.0", path = "../swc_ecma_transforms_testing" }
|
||||
|
@ -26,5 +26,5 @@ swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
|
||||
swc_trace_macro = { version = "1.0.0", path = "../swc_trace_macro" }
|
||||
|
||||
[dev-dependencies]
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_testing = { version = "0.152.0", path = "../swc_ecma_transforms_testing" }
|
||||
|
@ -27,5 +27,5 @@ swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
|
||||
swc_trace_macro = { version = "1.0.0", path = "../swc_trace_macro" }
|
||||
|
||||
[dev-dependencies]
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_testing = { version = "0.152.0", path = "../swc_ecma_transforms_testing" }
|
||||
|
@ -25,5 +25,5 @@ swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
|
||||
swc_trace_macro = { version = "1.0.0", path = "../swc_trace_macro" }
|
||||
|
||||
[dev-dependencies]
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_testing = { version = "0.152.0", path = "../swc_ecma_transforms_testing" }
|
||||
|
@ -25,5 +25,5 @@ swc_trace_macro = { version = "1.0.0", path = "../swc_trace_macro" }
|
||||
tracing = { workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_testing = { version = "0.152.0", path = "../swc_ecma_transforms_testing" }
|
||||
|
@ -23,5 +23,5 @@ swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
|
||||
swc_trace_macro = { version = "1.0.0", path = "../swc_trace_macro" }
|
||||
|
||||
[dev-dependencies]
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_testing = { version = "0.152.0", path = "../swc_ecma_transforms_testing" }
|
||||
|
@ -33,7 +33,7 @@ swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
|
||||
|
||||
[dev-dependencies]
|
||||
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_base = { version = "0.149.0", path = "../swc_ecma_transforms_base" }
|
||||
testing = { version = "0.42.0", path = "../testing" }
|
||||
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecma_loader"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.52.0"
|
||||
version = "0.52.1"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
|
@ -62,7 +62,7 @@ swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast", features = [
|
||||
"serde",
|
||||
] }
|
||||
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_base = { version = "0.149.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_optimization = { version = "0.212.0", path = "../swc_ecma_transforms_optimization" }
|
||||
swc_ecma_usage_analyzer = { version = "0.33.0", path = "../swc_ecma_usage_analyzer" }
|
||||
|
@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "examples/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecma_parser"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.152.0"
|
||||
version = "0.152.1"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
|
@ -45,7 +45,7 @@ criterion = { workspace = true }
|
||||
pretty_assertions = { workspace = true }
|
||||
|
||||
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
testing = { version = "0.42.0", path = "../testing" }
|
||||
|
||||
[[bench]]
|
||||
|
@ -21,5 +21,5 @@ syn = { workspace = true }
|
||||
swc_atoms = { version = "1.0.0", path = "../swc_atoms" }
|
||||
swc_common = { version = "0.40.0", path = "../swc_common" }
|
||||
swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_macros_common = { version = "0.3.11", path = "../swc_macros_common" }
|
||||
|
@ -50,6 +50,6 @@ sourcemap = { workspace = true }
|
||||
tempfile = { workspace = true }
|
||||
|
||||
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_testing = { version = "0.152.0", path = "../swc_ecma_transforms_testing" }
|
||||
testing = { version = "0.42.0", path = "../testing" }
|
||||
|
@ -31,7 +31,7 @@ tracing = { workspace = true }
|
||||
swc_atoms = { version = "1.0.0", path = "../swc_atoms" }
|
||||
swc_common = { version = "0.40.0", path = "../swc_common" }
|
||||
swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_utils = { version = "0.137.0", path = "../swc_ecma_utils" }
|
||||
swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
|
||||
|
||||
|
@ -54,6 +54,6 @@ swc_trace_macro = { version = "1.0.0", path = "../swc_trace_macro" }
|
||||
[dev-dependencies]
|
||||
serde_json = { workspace = true }
|
||||
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_testing = { version = "0.152.0", path = "../swc_ecma_transforms_testing" }
|
||||
testing = { version = "0.42.0", path = "../testing" }
|
||||
|
@ -28,10 +28,10 @@ swc_atoms = { version = "1.0.0", path = "../swc_atoms" }
|
||||
swc_cached = { version = "0.3.19", path = "../swc_cached" }
|
||||
swc_common = { version = "0.40.0", path = "../swc_common" }
|
||||
swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_loader = { version = "0.52.0", path = "../swc_ecma_loader", features = [
|
||||
swc_ecma_loader = { version = "0.52.1", path = "../swc_ecma_loader", features = [
|
||||
"node",
|
||||
] }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_base = { version = "0.149.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_utils = { version = "0.137.0", path = "../swc_ecma_utils" }
|
||||
swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
|
||||
@ -40,7 +40,7 @@ swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
|
||||
indexmap = { workspace = true, features = ["serde"] }
|
||||
serde_json = { workspace = true }
|
||||
|
||||
swc_ecma_loader = { version = "0.52.0", path = "../swc_ecma_loader", features = [
|
||||
swc_ecma_loader = { version = "0.52.1", path = "../swc_ecma_loader", features = [
|
||||
"node",
|
||||
"tsc",
|
||||
] }
|
||||
|
@ -34,7 +34,7 @@ tracing = { workspace = true }
|
||||
swc_atoms = { version = "1.0.0", path = "../swc_atoms" }
|
||||
swc_common = { version = "0.40.0", path = "../swc_common" }
|
||||
swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_base = { version = "0.149.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" }
|
||||
swc_ecma_utils = { version = "0.137.0", path = "../swc_ecma_utils" }
|
||||
|
@ -25,7 +25,7 @@ smallvec = { workspace = true }
|
||||
swc_atoms = { version = "1.0.0", path = "../swc_atoms" }
|
||||
swc_common = { version = "0.40.0", path = "../swc_common" }
|
||||
swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_loader = { version = "0.52.0", path = "../swc_ecma_loader", optional = true }
|
||||
swc_ecma_loader = { version = "0.52.1", path = "../swc_ecma_loader", optional = true }
|
||||
swc_ecma_transforms_base = { version = "0.149.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_classes = { version = "0.138.0", path = "../swc_ecma_transforms_classes" }
|
||||
swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" }
|
||||
@ -36,7 +36,7 @@ swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit"
|
||||
serde_json = { workspace = true }
|
||||
|
||||
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_compat = { version = "0.175.0", path = "../swc_ecma_transforms_compat" }
|
||||
swc_ecma_transforms_testing = { version = "0.152.0", path = "../swc_ecma_transforms_testing" }
|
||||
testing = { version = "0.42.0", path = "../testing" }
|
||||
|
@ -32,7 +32,7 @@ swc_atoms = { version = "1.0.0", path = "../swc_atoms" }
|
||||
swc_common = { version = "0.40.0", path = "../swc_common" }
|
||||
swc_config = { version = "0.1.13", path = "../swc_config" }
|
||||
swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_base = { version = "0.149.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" }
|
||||
swc_ecma_utils = { version = "0.137.0", path = "../swc_ecma_utils" }
|
||||
|
@ -27,7 +27,7 @@ swc_common = { version = "0.40.0", path = "../swc_common", features = [
|
||||
] }
|
||||
swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_testing = { version = "0.29.0", path = "../swc_ecma_testing" }
|
||||
swc_ecma_transforms_base = { version = "0.149.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_utils = { version = "0.137.0", path = "../swc_ecma_utils" }
|
||||
|
@ -29,7 +29,7 @@ codspeed-criterion-compat = { workspace = true }
|
||||
criterion = { workspace = true }
|
||||
|
||||
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_compat = { version = "0.175.0", path = "../swc_ecma_transforms_compat" }
|
||||
swc_ecma_transforms_proposal = { version = "0.183.0", path = "../swc_ecma_transforms_proposal" }
|
||||
swc_ecma_transforms_testing = { version = "0.152.0", path = "../swc_ecma_transforms_testing" }
|
||||
|
@ -38,5 +38,5 @@ swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
|
||||
stacker = { version = "0.1.15", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
testing = { version = "0.42.0", path = "../testing" }
|
||||
|
@ -41,7 +41,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
|
||||
swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen", optional = true }
|
||||
swc_ecma_minifier = { version = "0.208.0", path = "../swc_ecma_minifier", optional = true }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser", optional = true, default-features = false }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser", optional = true, default-features = false }
|
||||
swc_ecma_preset_env = { version = "0.221.0", path = "../swc_ecma_preset_env", optional = true }
|
||||
swc_ecma_quote = { version = "0.68.0", path = "../swc_ecma_quote", optional = true }
|
||||
swc_ecma_transforms = { version = "0.243.0", path = "../swc_ecma_transforms", optional = true }
|
||||
|
@ -30,7 +30,7 @@ swc_common = { version = "0.40.0", path = "../swc_common", features = [
|
||||
"tty-emitter",
|
||||
] }
|
||||
swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_utils = { version = "0.137.0", path = "../swc_ecma_utils" }
|
||||
swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
|
||||
swc_estree_ast = { version = "0.30.0", path = "../swc_estree_ast" }
|
||||
@ -43,7 +43,7 @@ pretty_assertions = { workspace = true }
|
||||
|
||||
swc = { version = "0.289.0", path = "../swc" }
|
||||
swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms = { version = "0.243.0", path = "../swc_ecma_transforms/" }
|
||||
testing = { version = "0.42.0", path = "../testing" }
|
||||
walkdir = { workspace = true }
|
||||
|
@ -22,7 +22,7 @@ swc_common = { version = "0.40.0", path = "../swc_common", features = [
|
||||
] }
|
||||
swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_base = { version = "0.149.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_typescript = { version = "0.202.0", path = "../swc_ecma_transforms_typescript" }
|
||||
swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
|
||||
|
@ -39,7 +39,7 @@ swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen", features
|
||||
swc_ecma_minifier = { version = "0.208.0", path = "../swc_ecma_minifier", features = [
|
||||
"extra-serde",
|
||||
] }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_base = { version = "0.149.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
|
||||
swc_html_ast = { version = "0.40.0", path = "../swc_html_ast" }
|
||||
|
@ -39,8 +39,8 @@ swc_common = { version = "0.40.0", path = "../swc_common", features = [
|
||||
] }
|
||||
swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_loader = { version = "0.52.0", path = "../swc_ecma_loader" }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_loader = { version = "0.52.1", path = "../swc_ecma_loader" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms = { version = "0.243.0", path = "../swc_ecma_transforms" }
|
||||
swc_ecma_utils = { version = "0.137.0", path = "../swc_ecma_utils" }
|
||||
swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
|
||||
|
@ -86,8 +86,8 @@ swc_css_parser = { version = "0.157.0", path = "../swc_css_parser" }
|
||||
swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast", features = [
|
||||
"rkyv-impl",
|
||||
] }
|
||||
swc_ecma_loader = { version = "0.52.0", path = "../swc_ecma_loader" }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_loader = { version = "0.52.1", path = "../swc_ecma_loader" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
|
||||
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
|
||||
testing = { version = "0.42.0", path = "../testing" }
|
||||
|
@ -18,5 +18,5 @@ swc_ecma_ast = { version = "0.121.0", path = "../swc_ecma_ast" }
|
||||
|
||||
[dev-dependencies]
|
||||
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_parser = { version = "0.152.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
|
||||
testing = { version = "0.42.0", path = "../testing" }
|
||||
|
Loading…
Reference in New Issue
Block a user