mirror of
https://github.com/swc-project/swc.git
synced 2024-11-21 21:41:48 +03:00
chore: Publish crates with swc_core
v1.0.5
This commit is contained in:
parent
715c42c0bf
commit
dacb6cfce7
@ -1,6 +0,0 @@
|
||||
---
|
||||
swc_core: patch
|
||||
swc_ecma_minifier: patch
|
||||
---
|
||||
|
||||
fix(es/codegen): Improve EndsWithAlphaNum
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
swc_core: patch
|
||||
swc_ecma_transforms_base: patch
|
||||
---
|
||||
|
||||
fix(es/renamer): check `preserved` in normal renaming mode
|
23
CHANGELOG.md
23
CHANGELOG.md
@ -1,4 +1,27 @@
|
||||
# Changelog
|
||||
## [unreleased]
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
|
||||
|
||||
- **(bindings)** Update napi to handle string with `\0` ([#9665](https://github.com/swc-project/swc/issues/9665)) ([8f45eaf](https://github.com/swc-project/swc/commit/8f45eaf837d023847c478e562265e141213ce231))
|
||||
|
||||
|
||||
- **(bindings/node)** Add `VisitTsPropertySignature` ([#9670](https://github.com/swc-project/swc/issues/9670)) ([715c42c](https://github.com/swc-project/swc/commit/715c42c0bfe699d822a7e9ea18751d35aac3235d))
|
||||
|
||||
|
||||
- **(es/codegen)** Improve EndsWithAlphaNum ([#9675](https://github.com/swc-project/swc/issues/9675)) ([ba2a942](https://github.com/swc-project/swc/commit/ba2a942f56776e6927b48cfd185d8720052b7409))
|
||||
|
||||
|
||||
- **(es/renamer)** Check `preserved` in normal renaming mode ([#9666](https://github.com/swc-project/swc/issues/9666)) ([87b4e10](https://github.com/swc-project/swc/commit/87b4e10e5dbeb236ee5232d85d3176472fa4a9d0))
|
||||
|
||||
### Documentation
|
||||
|
||||
|
||||
|
||||
- **(contributing)** Document changeset ([#9667](https://github.com/swc-project/swc/issues/9667)) ([602c667](https://github.com/swc-project/swc/commit/602c667b9d435fa9155345952379287cb11e59db))
|
||||
|
||||
## [1.7.39] - 2024-10-22
|
||||
|
||||
### Bug Fixes
|
||||
|
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -4115,7 +4115,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_core"
|
||||
version = "1.0.4"
|
||||
version = "1.0.5"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"binding_macros",
|
||||
@ -4657,7 +4657,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_minifier"
|
||||
version = "1.0.2"
|
||||
version = "1.0.3"
|
||||
dependencies = [
|
||||
"ansi_term",
|
||||
"anyhow",
|
||||
@ -4820,7 +4820,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_transforms_base"
|
||||
version = "1.0.0"
|
||||
version = "1.0.1"
|
||||
dependencies = [
|
||||
"better_scoped_tls",
|
||||
"bitflags 2.6.0",
|
||||
|
@ -33,11 +33,11 @@ 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.2", path = "../swc_ecma_minifier", features = [
|
||||
swc_ecma_minifier = { version = "1.0.3", path = "../swc_ecma_minifier", features = [
|
||||
"concurrent",
|
||||
] }
|
||||
swc_ecma_parser = { version = "1.0.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_base = { version = "1.0.1", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" }
|
||||
swc_error_reporters = { version = "2.0.0", path = "../swc_error_reporters" }
|
||||
swc_timer = { version = "1.0.0", path = "../swc_timer" }
|
||||
|
@ -85,7 +85,7 @@ swc_ecma_loader = { version = "1.0.0", path = "../swc_ecma_loader", features = [
|
||||
"node",
|
||||
"tsc",
|
||||
] }
|
||||
swc_ecma_minifier = { version = "1.0.2", path = "../swc_ecma_minifier" }
|
||||
swc_ecma_minifier = { version = "1.0.3", path = "../swc_ecma_minifier" }
|
||||
swc_ecma_parser = { version = "1.0.1", 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 = [
|
||||
@ -96,7 +96,7 @@ swc_ecma_transforms = { version = "1.0.0", path = "../swc_ecma_transforms", feat
|
||||
"react",
|
||||
"typescript",
|
||||
] }
|
||||
swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_base = { version = "1.0.1", 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.1", path = "../swc_ecma_utils" }
|
||||
|
@ -43,7 +43,7 @@ swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast"
|
||||
swc_ecma_codegen = { version = "1.0.0", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_loader = { version = "1.0.0", path = "../swc_ecma_loader" }
|
||||
swc_ecma_parser = { version = "1.0.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_base = { version = "1.0.1", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_optimization = { version = "1.0.0", path = "../swc_ecma_transforms_optimization" }
|
||||
swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" }
|
||||
swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" }
|
||||
@ -63,7 +63,7 @@ swc_ecma_loader = { version = "1.0.0", path = "../swc_ecma_loader", features = [
|
||||
"node",
|
||||
"cache",
|
||||
] }
|
||||
swc_ecma_minifier = { version = "1.0.2", path = "../swc_ecma_minifier", features = [
|
||||
swc_ecma_minifier = { version = "1.0.3", path = "../swc_ecma_minifier", features = [
|
||||
"concurrent",
|
||||
] }
|
||||
swc_ecma_transforms_proposal = { version = "1.0.1", path = "../swc_ecma_transforms_proposal" }
|
||||
|
@ -39,7 +39,7 @@ tracing-futures = { workspace = true }
|
||||
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
||||
walkdir = { workspace = true }
|
||||
|
||||
swc_core = { version = "1.0.4", features = [
|
||||
swc_core = { version = "1.0.5", features = [
|
||||
"trace_macro",
|
||||
"common_concurrent",
|
||||
"base_concurrent",
|
||||
|
@ -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.2", path = "../swc_ecma_minifier" }
|
||||
swc_ecma_minifier = { version = "1.0.3", path = "../swc_ecma_minifier" }
|
||||
swc_ecma_parser = { version = "1.0.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" }
|
||||
swc_timer = { version = "1.0.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 = "1.0.4"
|
||||
version = "1.0.5"
|
||||
[package.metadata.docs.rs]
|
||||
features = [
|
||||
"allocator_node",
|
||||
@ -357,11 +357,11 @@ 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.2", path = "../swc_ecma_minifier" }
|
||||
swc_ecma_minifier = { optional = true, version = "1.0.3", path = "../swc_ecma_minifier" }
|
||||
swc_ecma_parser = { optional = true, version = "1.0.1", 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" }
|
||||
swc_ecma_transforms_base = { optional = true, version = "1.0.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_base = { optional = true, version = "1.0.1", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_compat = { optional = true, version = "1.0.0", path = "../swc_ecma_transforms_compat" }
|
||||
swc_ecma_transforms_module = { optional = true, version = "1.0.0", path = "../swc_ecma_transforms_module" }
|
||||
swc_ecma_transforms_optimization = { optional = true, version = "1.0.0", path = "../swc_ecma_transforms_optimization" }
|
||||
|
@ -15,7 +15,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_compat_es2015 = { version = "1.0.1", path = "../swc_ecma_compat_es2015" }
|
||||
swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_base = { version = "1.0.1", path = "../swc_ecma_transforms_base" }
|
||||
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" }
|
||||
|
@ -27,7 +27,7 @@ swc_common = { version = "1.0.0", path = "../swc_common" }
|
||||
swc_config = { version = "1.0.0", path = "../swc_config" }
|
||||
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_base = { version = "1.0.1", 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.1", path = "../swc_ecma_utils" }
|
||||
|
@ -16,7 +16,7 @@ version = "1.0.0"
|
||||
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_transforms_base = { version = "1.0.1", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
|
||||
swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" }
|
||||
swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" }
|
||||
|
@ -19,7 +19,7 @@ tracing = { workspace = true }
|
||||
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
|
||||
swc_common = { version = "1.0.0", path = "../swc_common" }
|
||||
swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_base = { version = "1.0.1", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
|
||||
swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" }
|
||||
swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" }
|
||||
|
@ -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_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_base = { version = "1.0.1", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
|
||||
swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" }
|
||||
swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" }
|
||||
|
@ -19,7 +19,7 @@ tracing = { workspace = true }
|
||||
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
|
||||
swc_common = { version = "1.0.0", path = "../swc_common" }
|
||||
swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_base = { version = "1.0.1", path = "../swc_ecma_transforms_base" }
|
||||
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" }
|
||||
|
@ -18,7 +18,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_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_transforms_base = { version = "1.0.1", path = "../swc_ecma_transforms_base" }
|
||||
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" }
|
||||
|
@ -18,7 +18,7 @@ tracing = { workspace = true }
|
||||
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
|
||||
swc_common = { version = "1.0.0", path = "../swc_common" }
|
||||
swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_base = { version = "1.0.1", path = "../swc_ecma_transforms_base" }
|
||||
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" }
|
||||
|
@ -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_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_base = { version = "1.0.1", 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.1", path = "../swc_ecma_utils" }
|
||||
|
@ -17,7 +17,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_transforms_base = { version = "1.0.1", path = "../swc_ecma_transforms_base" }
|
||||
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" }
|
||||
|
@ -34,7 +34,7 @@ swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" }
|
||||
[dev-dependencies]
|
||||
swc_ecma_codegen = { version = "1.0.0", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_parser = { version = "1.0.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_base = { version = "1.0.1", path = "../swc_ecma_transforms_base" }
|
||||
testing = { version = "1.0.0", path = "../testing" }
|
||||
|
||||
[features]
|
||||
|
@ -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.2"
|
||||
version = "1.0.3"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -63,7 +63,7 @@ swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast", features = [
|
||||
] }
|
||||
swc_ecma_codegen = { version = "1.0.0", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_parser = { version = "1.0.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_base = { version = "1.0.1", 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.1", path = "../swc_ecma_usage_analyzer" }
|
||||
swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" }
|
||||
|
@ -35,7 +35,7 @@ typescript = ["swc_ecma_transforms_typescript"]
|
||||
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_transforms_base = { version = "1.0.1", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_compat = { version = "1.0.0", path = "../swc_ecma_transforms_compat", optional = true }
|
||||
swc_ecma_transforms_module = { version = "1.0.0", path = "../swc_ecma_transforms_module", optional = true }
|
||||
swc_ecma_transforms_optimization = { version = "1.0.0", path = "../swc_ecma_transforms_optimization", optional = true }
|
||||
|
@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.js"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecma_transforms_base"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "1.0.0"
|
||||
version = "1.0.1"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
@ -15,6 +15,6 @@ bench = false
|
||||
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_transforms_base = { version = "1.0.1", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" }
|
||||
swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" }
|
||||
|
@ -44,7 +44,7 @@ swc_ecma_compat_es2020 = { version = "1.0.0", path = "../swc_ecma_compat_es
|
||||
swc_ecma_compat_es2021 = { version = "1.0.0", path = "../swc_ecma_compat_es2021" }
|
||||
swc_ecma_compat_es2022 = { version = "1.0.0", path = "../swc_ecma_compat_es2022" }
|
||||
swc_ecma_compat_es3 = { version = "1.0.0", path = "../swc_ecma_compat_es3" }
|
||||
swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_base = { version = "1.0.1", 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.1", path = "../swc_ecma_utils" }
|
||||
|
@ -32,7 +32,7 @@ swc_ecma_loader = { version = "1.0.0", path = "../swc_ecma_loader", features = [
|
||||
"node",
|
||||
] }
|
||||
swc_ecma_parser = { version = "1.0.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_base = { version = "1.0.1", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" }
|
||||
swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" }
|
||||
|
||||
|
@ -35,7 +35,7 @@ swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
|
||||
swc_common = { version = "1.0.0", path = "../swc_common" }
|
||||
swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_parser = { version = "1.0.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_base = { version = "1.0.1", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
|
||||
swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" }
|
||||
swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" }
|
||||
|
@ -26,7 +26,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_loader = { version = "1.0.0", path = "../swc_ecma_loader", optional = true }
|
||||
swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_base = { version = "1.0.1", 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.1", path = "../swc_ecma_utils" }
|
||||
|
@ -33,7 +33,7 @@ swc_common = { version = "1.0.0", path = "../swc_common" }
|
||||
swc_config = { version = "1.0.0", path = "../swc_config" }
|
||||
swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_parser = { version = "1.0.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_base = { version = "1.0.1", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
|
||||
swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" }
|
||||
swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" }
|
||||
|
@ -29,7 +29,7 @@ swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_codegen = { version = "1.0.0", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_parser = { version = "1.0.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_testing = { version = "1.0.0", path = "../swc_ecma_testing" }
|
||||
swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_base = { version = "1.0.1", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" }
|
||||
swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" }
|
||||
testing = { version = "1.0.0", path = "../testing" }
|
||||
|
@ -19,7 +19,7 @@ ryu-js = { workspace = true }
|
||||
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
|
||||
swc_common = { version = "1.0.0", path = "../swc_common" }
|
||||
swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_base = { version = "1.0.1", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_react = { version = "1.0.0", path = "../swc_ecma_transforms_react" }
|
||||
swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" }
|
||||
swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" }
|
||||
|
@ -40,7 +40,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
|
||||
[dependencies]
|
||||
swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_codegen = { version = "1.0.0", path = "../swc_ecma_codegen", optional = true }
|
||||
swc_ecma_minifier = { version = "1.0.2", path = "../swc_ecma_minifier", optional = true }
|
||||
swc_ecma_minifier = { version = "1.0.3", path = "../swc_ecma_minifier", optional = true }
|
||||
swc_ecma_parser = { version = "1.0.1", path = "../swc_ecma_parser", optional = true, default-features = false }
|
||||
swc_ecma_preset_env = { version = "1.0.0", path = "../swc_ecma_preset_env", optional = true }
|
||||
swc_ecma_quote = { version = "1.0.0", path = "../swc_ecma_quote", optional = true }
|
||||
|
@ -23,7 +23,7 @@ swc_common = { version = "1.0.0", path = "../swc_common", features = [
|
||||
swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_codegen = { version = "1.0.0", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_parser = { version = "1.0.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_base = { version = "1.0.1", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_typescript = { version = "1.0.1", path = "../swc_ecma_transforms_typescript" }
|
||||
swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" }
|
||||
|
||||
|
@ -36,11 +36,11 @@ swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_codegen = { version = "1.0.0", path = "../swc_ecma_codegen", features = [
|
||||
"serde-impl",
|
||||
] }
|
||||
swc_ecma_minifier = { version = "1.0.2", path = "../swc_ecma_minifier", features = [
|
||||
swc_ecma_minifier = { version = "1.0.3", path = "../swc_ecma_minifier", features = [
|
||||
"extra-serde",
|
||||
] }
|
||||
swc_ecma_parser = { version = "1.0.1", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_base = { version = "1.0.1", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" }
|
||||
swc_html_ast = { version = "1.0.0", path = "../swc_html_ast" }
|
||||
swc_html_codegen = { version = "1.0.0", path = "../swc_html_codegen" }
|
||||
|
Loading…
Reference in New Issue
Block a user