fix(plugin): Align deps to fix build (#4377)

This commit is contained in:
OJ Kwon 2022-04-20 01:05:02 -07:00 committed by GitHub
parent a5c2976625
commit 8419b60430
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
50 changed files with 61 additions and 61 deletions

View File

@ -15,7 +15,7 @@ bench = false
nom = "7.1.0" nom = "7.1.0"
serde = {version = "1", features = ["derive"]} serde = {version = "1", features = ["derive"]}
swc_atoms = {version = "0.2", path = "../swc_atoms"} swc_atoms = {version = "0.2", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
[dev-dependencies] [dev-dependencies]
anyhow = "1" anyhow = "1"

View File

@ -48,7 +48,7 @@ serde_json = "1"
sourcemap = "6" sourcemap = "6"
swc_atoms = { version = "0.2", path = "../swc_atoms" } swc_atoms = { version = "0.2", path = "../swc_atoms" }
swc_cached = { version = "0.1.0", path = "../swc_cached" } swc_cached = { version = "0.1.0", path = "../swc_cached" }
swc_common = { version = "0.17.20", path = "../swc_common", features = [ swc_common = { version = "0.17.23", path = "../swc_common", features = [
"sourcemap", "sourcemap",
"concurrent", "concurrent",
"parking_lot", "parking_lot",
@ -81,8 +81,8 @@ swc_ecma_visit = { version = "0.62.0", path = "../swc_ecma_visit" }
swc_ecmascript = { version = "0.147.0", path = "../swc_ecmascript" } swc_ecmascript = { version = "0.147.0", path = "../swc_ecmascript" }
swc_error_reporters = { version = "0.1.0", path = "../swc_error_reporters" } swc_error_reporters = { version = "0.1.0", path = "../swc_error_reporters" }
swc_node_comments = { version = "0.4.0", path = "../swc_node_comments" } swc_node_comments = { version = "0.4.0", path = "../swc_node_comments" }
swc_plugin_proxy = { version = "0.2.0", path = "../swc_plugin_proxy", optional = true } swc_plugin_proxy = { version = "0.2.1", path = "../swc_plugin_proxy", optional = true }
swc_plugin_runner = { version = "0.53.0", path = "../swc_plugin_runner", optional = true, default-features = false } swc_plugin_runner = { version = "0.53.1", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_timer = { version = "0.5.0", path = "../swc_timer" } swc_timer = { version = "0.5.0", path = "../swc_timer" }
swc_visit = { version = "0.3.0", path = "../swc_visit" } swc_visit = { version = "0.3.0", path = "../swc_visit" }
tracing = "0.1.32" tracing = "0.1.32"

View File

@ -38,7 +38,7 @@ rayon = { version = "1", optional = true }
relative-path = "1.2" relative-path = "1.2"
retain_mut = "0.1.2" retain_mut = "0.1.2"
swc_atoms = { version = "0.2.4", path = "../swc_atoms" } swc_atoms = { version = "0.2.4", path = "../swc_atoms" }
swc_common = { version = "0.17.20", path = "../swc_common" } swc_common = { version = "0.17.23", path = "../swc_common" }
swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.105.0", path = "../swc_ecma_codegen" } swc_ecma_codegen = { version = "0.105.0", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "0.29.0", path = "../swc_ecma_loader" } swc_ecma_loader = { version = "0.29.0", path = "../swc_ecma_loader" }

View File

@ -32,8 +32,8 @@ relative-path = "1.6.1"
serde = {version = "1", features = ["derive"]} serde = {version = "1", features = ["derive"]}
serde_json = {version = "1", features = ["unbounded_depth"]} serde_json = {version = "1", features = ["unbounded_depth"]}
swc = {version = "0.169.0", path = "../swc"} swc = {version = "0.169.0", path = "../swc"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_plugin_runner = {version = "0.53.0", path = "../swc_plugin_runner", default-features = false, optional = true} swc_plugin_runner = {version = "0.53.1", path = "../swc_plugin_runner", default-features = false, optional = true}
swc_trace_macro = {version = "0.1.0", path = "../swc_trace_macro"} swc_trace_macro = {version = "0.1.0", path = "../swc_trace_macro"}
tracing = "0.1.32" tracing = "0.1.32"
tracing-chrome = "0.5.0" tracing-chrome = "0.5.0"

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_common" name = "swc_common"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.17.22" version = "0.17.23"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true

View File

@ -16,4 +16,4 @@ is-macro = "0.2.0"
serde = {version = "1.0.127", features = ["derive"]} serde = {version = "1.0.127", features = ["derive"]}
string_enum = {version = "0.3.1", path = "../string_enum/"} string_enum = {version = "0.3.1", path = "../string_enum/"}
swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}

View File

@ -16,12 +16,12 @@ bench = false
auto_impl = "0.5.0" auto_impl = "0.5.0"
bitflags = "1.3.2" bitflags = "1.3.2"
swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_css_ast = {version = "0.92.0", path = "../swc_css_ast"} swc_css_ast = {version = "0.92.0", path = "../swc_css_ast"}
swc_css_codegen_macros = {version = "0.2.0", path = "../swc_css_codegen_macros"} swc_css_codegen_macros = {version = "0.2.0", path = "../swc_css_codegen_macros"}
[dev-dependencies] [dev-dependencies]
swc_common = { version = "0.17.20", path = "../swc_common", features = [ swc_common = { version = "0.17.23", path = "../swc_common", features = [
"sourcemap", "sourcemap",
]} ]}
swc_css_parser = {version = "0.100.0", path = "../swc_css_parser"} swc_css_parser = {version = "0.100.0", path = "../swc_css_parser"}

View File

@ -19,7 +19,7 @@ rayon = "1.5.1"
serde = {version = "1.0.133", features = ["derive"]} serde = {version = "1.0.133", features = ["derive"]}
swc_atoms = {version = "0.2.9", path = "../swc_atoms"} swc_atoms = {version = "0.2.9", path = "../swc_atoms"}
swc_cached = {version = "0.1.0", path = "../swc_cached"} swc_cached = {version = "0.1.0", path = "../swc_cached"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_css_ast = {version = "0.92.0", path = "../swc_css_ast"} swc_css_ast = {version = "0.92.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.91.0", path = "../swc_css_visit"} swc_css_visit = {version = "0.91.0", path = "../swc_css_visit"}
thiserror = "1.0.30" thiserror = "1.0.30"

View File

@ -14,7 +14,7 @@ bench = false
[dependencies] [dependencies]
swc_atoms = {version = "0.2.9", path = "../swc_atoms"} swc_atoms = {version = "0.2.9", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_css_ast = {version = "0.92.0", path = "../swc_css_ast"} swc_css_ast = {version = "0.92.0", path = "../swc_css_ast"}
swc_css_utils = { version = "0.89.0", path = "../swc_css_utils/" } swc_css_utils = { version = "0.89.0", path = "../swc_css_utils/" }
swc_css_visit = {version = "0.91.0", path = "../swc_css_visit"} swc_css_visit = {version = "0.91.0", path = "../swc_css_visit"}

View File

@ -19,7 +19,7 @@ debug = []
bitflags = "1.2.1" bitflags = "1.2.1"
lexical = "6.1.0" lexical = "6.1.0"
swc_atoms = { version = "0.2.7", path = "../swc_atoms" } swc_atoms = { version = "0.2.7", path = "../swc_atoms" }
swc_common = { version = "0.17.20", path = "../swc_common" } swc_common = { version = "0.17.23", path = "../swc_common" }
swc_css_ast = { version = "0.92.0", path = "../swc_css_ast" } swc_css_ast = { version = "0.92.0", path = "../swc_css_ast" }
[dev-dependencies] [dev-dependencies]

View File

@ -14,7 +14,7 @@ bench = false
[dependencies] [dependencies]
swc_atoms = { version = "0.2.7", path = "../swc_atoms" } swc_atoms = { version = "0.2.7", path = "../swc_atoms" }
swc_common = { version = "0.17.20", path = "../swc_common" } swc_common = { version = "0.17.23", path = "../swc_common" }
swc_css_ast = { version = "0.92.0", path = "../swc_css_ast" } swc_css_ast = { version = "0.92.0", path = "../swc_css_ast" }
swc_css_utils = { version = "0.89.0", path = "../swc_css_utils/" } swc_css_utils = { version = "0.89.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.91.0", path = "../swc_css_visit" } swc_css_visit = { version = "0.91.0", path = "../swc_css_visit" }

View File

@ -17,6 +17,6 @@ once_cell = "1.10.0"
serde = { version = "1.0.118", features = ["derive"] } serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61" serde_json = "1.0.61"
swc_atoms = { version = "0.2.7", path = "../swc_atoms" } swc_atoms = { version = "0.2.7", path = "../swc_atoms" }
swc_common = { version = "0.17.20", path = "../swc_common" } swc_common = { version = "0.17.23", path = "../swc_common" }
swc_css_ast = { version = "0.92.0", path = "../swc_css_ast" } swc_css_ast = { version = "0.92.0", path = "../swc_css_ast" }
swc_css_visit = { version = "0.91.0", path = "../swc_css_visit" } swc_css_visit = { version = "0.91.0", path = "../swc_css_visit" }

View File

@ -13,6 +13,6 @@ bench = false
[dependencies] [dependencies]
swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_css_ast = {version = "0.92.0", path = "../swc_css_ast"} swc_css_ast = {version = "0.92.0", path = "../swc_css_ast"}
swc_visit = {version = "0.3.0", path = "../swc_visit"} swc_visit = {version = "0.3.0", path = "../swc_visit"}

View File

@ -28,7 +28,7 @@ rkyv = { version = "0.7.37", optional = true }
serde = {version = "1.0.133", features = ["derive"]} serde = {version = "1.0.133", features = ["derive"]}
string_enum = {version = "0.3.1", path = "../string_enum"} string_enum = {version = "0.3.1", path = "../string_enum"}
swc_atoms = {version = "0.2", path = "../swc_atoms"} swc_atoms = {version = "0.2", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
unicode-id = "0.3" unicode-id = "0.3"
[dev-dependencies] [dev-dependencies]

View File

@ -20,14 +20,14 @@ once_cell = "1.10.0"
rustc-hash = "1.1.0" rustc-hash = "1.1.0"
sourcemap = "6" sourcemap = "6"
swc_atoms = { version = "0.2", path = "../swc_atoms" } swc_atoms = { version = "0.2", path = "../swc_atoms" }
swc_common = { version = "0.17.20", path = "../swc_common" } swc_common = { version = "0.17.23", path = "../swc_common" }
swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" }
swc_ecma_codegen_macros = { version = "0.7.0", path = "../swc_ecma_codegen_macros" } swc_ecma_codegen_macros = { version = "0.7.0", path = "../swc_ecma_codegen_macros" }
tracing = "0.1.32" tracing = "0.1.32"
[dev-dependencies] [dev-dependencies]
criterion = "0.3" criterion = "0.3"
swc_common = { version = "0.17.20", path = "../swc_common", features = [ swc_common = { version = "0.17.23", path = "../swc_common", features = [
"sourcemap", "sourcemap",
] } ] }
swc_ecma_parser = { version = "0.102.0", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.102.0", path = "../swc_ecma_parser" }

View File

@ -13,7 +13,7 @@ bench = false
[dependencies] [dependencies]
swc_atoms = {version = "0.2", path = "../swc_atoms"} swc_atoms = {version = "0.2", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"}
swc_ecma_visit = {version = "0.62.0", path = "../swc_ecma_visit"} swc_ecma_visit = {version = "0.62.0", path = "../swc_ecma_visit"}

View File

@ -13,7 +13,7 @@ bench = false
[dependencies] [dependencies]
phf = {version = "0.10", features = ["macros"]} phf = {version = "0.10", features = ["macros"]}
swc_atoms = {version = "0.2", path = "../swc_atoms"} swc_atoms = {version = "0.2", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"}
swc_ecma_utils = {version = "0.81.0", path = "../swc_ecma_utils"} swc_ecma_utils = {version = "0.81.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.62.0", path = "../swc_ecma_visit"} swc_ecma_visit = {version = "0.62.0", path = "../swc_ecma_visit"}

View File

@ -21,7 +21,7 @@ rayon = "1.5.1"
regex = "1" regex = "1"
serde = { version = "1.0.133", features = ["derive"] } serde = { version = "1.0.133", features = ["derive"] }
swc_atoms = { version = "0.2.9", path = "../swc_atoms" } swc_atoms = { version = "0.2.9", path = "../swc_atoms" }
swc_common = { version = "0.17.20", path = "../swc_common", features = [ swc_common = { version = "0.17.23", path = "../swc_common", features = [
"concurrent", "concurrent",
] } ] }
swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" }

View File

@ -35,7 +35,7 @@ path-clean = { version = "=0.1.0", optional = true }
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
serde_json = { version = "1.0.64", optional = true } serde_json = { version = "1.0.64", optional = true }
swc_cached = { version = "0.1.0", optional = true, path = "../swc_cached" } swc_cached = { version = "0.1.0", optional = true, path = "../swc_cached" }
swc_common = { version = "0.17.20", path = "../swc_common" } swc_common = { version = "0.17.23", path = "../swc_common" }
tracing = "0.1.32" tracing = "0.1.32"
pathdiff = "0.2.1" pathdiff = "0.2.1"

View File

@ -35,7 +35,7 @@ serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61" serde_json = "1.0.61"
swc_atoms = { version = "0.2", path = "../swc_atoms" } swc_atoms = { version = "0.2", path = "../swc_atoms" }
swc_cached = { version = "0.1.0", path = "../swc_cached" } swc_cached = { version = "0.1.0", path = "../swc_cached" }
swc_common = { version = "0.17.20", path = "../swc_common" } swc_common = { version = "0.17.23", path = "../swc_common" }
swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.105.0", path = "../swc_ecma_codegen" } swc_ecma_codegen = { version = "0.105.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.102.0", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.102.0", path = "../swc_ecma_parser" }

View File

@ -31,7 +31,7 @@ num-bigint = "0.4"
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
smallvec = "1.8.0" smallvec = "1.8.0"
swc_atoms = { version = "0.2.3", path = "../swc_atoms" } swc_atoms = { version = "0.2.3", path = "../swc_atoms" }
swc_common = { version = "0.17.20", path = "../swc_common" } swc_common = { version = "0.17.23", path = "../swc_common" }
swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" }
swc_ecma_visit = { version = "0.62.0", path = "../swc_ecma_visit", optional = true } swc_ecma_visit = { version = "0.62.0", path = "../swc_ecma_visit", optional = true }
tracing = "0.1.32" tracing = "0.1.32"

View File

@ -24,7 +24,7 @@ serde_json = "1"
st-map = "0.1.2" st-map = "0.1.2"
string_enum = {version = "0.3.1", path = "../string_enum"} string_enum = {version = "0.3.1", path = "../string_enum"}
swc_atoms = {version = "0.2", path = "../swc_atoms"} swc_atoms = {version = "0.2", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"}
swc_ecma_transforms = {version = "0.145.0", path = "../swc_ecma_transforms", features = [ swc_ecma_transforms = {version = "0.145.0", path = "../swc_ecma_transforms", features = [
"compat", "compat",

View File

@ -13,7 +13,7 @@ bench = false
[dependencies] [dependencies]
swc_atoms = {version = "0.2.9", path = "../swc_atoms"} swc_atoms = {version = "0.2.9", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"}
swc_ecma_quote_macros = {version = "0.12.0", path = "../swc_ecma_quote_macros"} swc_ecma_quote_macros = {version = "0.12.0", path = "../swc_ecma_quote_macros"}
swc_ecma_utils = {version = "0.81.0", path = "../swc_ecma_utils"} swc_ecma_utils = {version = "0.81.0", path = "../swc_ecma_utils"}

View File

@ -18,7 +18,7 @@ pmutil = "0.5.1"
proc-macro2 = "1" proc-macro2 = "1"
quote = "1" quote = "1"
swc_atoms = {version = "0.2.9", path = "../swc_atoms"} swc_atoms = {version = "0.2.9", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"}
swc_ecma_parser = {version = "0.102.0", path = "../swc_ecma_parser"} swc_ecma_parser = {version = "0.102.0", path = "../swc_ecma_parser"}
swc_macros_common = {version = "0.3.3", path = "../swc_macros_common"} swc_macros_common = {version = "0.3.3", path = "../swc_macros_common"}

View File

@ -28,7 +28,7 @@ typescript = ["swc_ecma_transforms_typescript"]
[dependencies] [dependencies]
swc_atoms = {version = "0.2.0", path = "../swc_atoms"} swc_atoms = {version = "0.2.0", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"}
swc_ecma_transforms_base = {version = "0.78.0", path = "../swc_ecma_transforms_base"} swc_ecma_transforms_base = {version = "0.78.0", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_compat = {version = "0.92.0", path = "../swc_ecma_transforms_compat", optional = true} swc_ecma_transforms_compat = {version = "0.92.0", path = "../swc_ecma_transforms_compat", optional = true}

View File

@ -23,7 +23,7 @@ rayon = {version = "1", optional = true}
serde = {version = "1", features = ["derive"]} serde = {version = "1", features = ["derive"]}
smallvec = "1.8.0" smallvec = "1.8.0"
swc_atoms = {version = "0.2", path = "../swc_atoms"} swc_atoms = {version = "0.2", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"}
swc_ecma_parser = {version = "0.102.0", path = "../swc_ecma_parser"} swc_ecma_parser = {version = "0.102.0", path = "../swc_ecma_parser"}
swc_ecma_utils = {version = "0.81.0", path = "../swc_ecma_utils"} swc_ecma_utils = {version = "0.81.0", path = "../swc_ecma_utils"}

View File

@ -13,7 +13,7 @@ bench = false
[dependencies] [dependencies]
swc_atoms = {version = "0.2.6", path = "../swc_atoms"} swc_atoms = {version = "0.2.6", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"}
swc_ecma_transforms_base = {version = "0.78.0", path = "../swc_ecma_transforms_base"} swc_ecma_transforms_base = {version = "0.78.0", path = "../swc_ecma_transforms_base"}
swc_ecma_utils = {version = "0.81.0", path = "../swc_ecma_utils"} swc_ecma_utils = {version = "0.81.0", path = "../swc_ecma_utils"}

View File

@ -30,7 +30,7 @@ rayon = { version = "1.5.1", optional = true }
serde = { version = "1.0.118", features = ["derive"] } serde = { version = "1.0.118", features = ["derive"] }
smallvec = "1.8.0" smallvec = "1.8.0"
swc_atoms = { version = "0.2.5", path = "../swc_atoms" } swc_atoms = { version = "0.2.5", path = "../swc_atoms" }
swc_common = { version = "0.17.20", path = "../swc_common" } swc_common = { version = "0.17.23", path = "../swc_common" }
swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.78.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.78.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "0.66.0", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_classes = { version = "0.66.0", path = "../swc_ecma_transforms_classes" }

View File

@ -21,7 +21,7 @@ pathdiff = "0.2.0"
serde = {version = "1.0.118", features = ["derive"]} serde = {version = "1.0.118", features = ["derive"]}
swc_atoms = {version = "0.2", path = "../swc_atoms"} swc_atoms = {version = "0.2", path = "../swc_atoms"}
swc_cached = {version = "0.1.0", path = "../swc_cached"} swc_cached = {version = "0.1.0", path = "../swc_cached"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"}
swc_ecma_loader = {version = "0.29.0", path = "../swc_ecma_loader", features = [ swc_ecma_loader = {version = "0.29.0", path = "../swc_ecma_loader", features = [
"node", "node",

View File

@ -31,7 +31,7 @@ once_cell = "1.10.0"
rayon = { version = "1.5.1", optional = true } rayon = { version = "1.5.1", optional = true }
serde_json = "1.0.61" serde_json = "1.0.61"
swc_atoms = { version = "0.2", path = "../swc_atoms" } swc_atoms = { version = "0.2", path = "../swc_atoms" }
swc_common = { version = "0.17.20", path = "../swc_common" } swc_common = { version = "0.17.23", path = "../swc_common" }
swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.102.0", path = "../swc_ecma_parser" } swc_ecma_parser = { version = "0.102.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.78.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_base = { version = "0.78.0", path = "../swc_ecma_transforms_base" }

View File

@ -21,7 +21,7 @@ either = "1.6.1"
serde = {version = "1.0.118", features = ["derive"]} serde = {version = "1.0.118", features = ["derive"]}
smallvec = "1.8.0" smallvec = "1.8.0"
swc_atoms = {version = "0.2", path = "../swc_atoms"} swc_atoms = {version = "0.2", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"}
swc_ecma_loader = {version = "0.29.0", path = "../swc_ecma_loader", optional = true} swc_ecma_loader = {version = "0.29.0", path = "../swc_ecma_loader", optional = true}
swc_ecma_transforms_base = {version = "0.78.0", path = "../swc_ecma_transforms_base"} swc_ecma_transforms_base = {version = "0.78.0", path = "../swc_ecma_transforms_base"}

View File

@ -23,7 +23,7 @@ serde = {version = "1.0.118", features = ["derive"]}
sha-1 = "0.10.0" sha-1 = "0.10.0"
string_enum = {version = "0.3.1", path = "../string_enum"} string_enum = {version = "0.3.1", path = "../string_enum"}
swc_atoms = {version = "0.2", path = "../swc_atoms"} swc_atoms = {version = "0.2", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"}
swc_ecma_parser = {version = "0.102.0", path = "../swc_ecma_parser"} swc_ecma_parser = {version = "0.102.0", path = "../swc_ecma_parser"}
swc_ecma_transforms_base = {version = "0.78.0", path = "../swc_ecma_transforms_base"} swc_ecma_transforms_base = {version = "0.78.0", path = "../swc_ecma_transforms_base"}

View File

@ -18,7 +18,7 @@ hex = "0.4.3"
serde = "1" serde = "1"
serde_json = "1" serde_json = "1"
sha-1 = "0.10" sha-1 = "0.10"
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"}
swc_ecma_codegen = {version = "0.105.0", path = "../swc_ecma_codegen"} swc_ecma_codegen = {version = "0.105.0", path = "../swc_ecma_codegen"}
swc_ecma_parser = {version = "0.102.0", path = "../swc_ecma_parser"} swc_ecma_parser = {version = "0.102.0", path = "../swc_ecma_parser"}

View File

@ -15,7 +15,7 @@ bench = false
[dependencies] [dependencies]
serde = {version = "1.0.118", features = ["derive"]} serde = {version = "1.0.118", features = ["derive"]}
swc_atoms = {version = "0.2", path = "../swc_atoms"} swc_atoms = {version = "0.2", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"}
swc_ecma_transforms_base = {version = "0.78.0", path = "../swc_ecma_transforms_base"} swc_ecma_transforms_base = {version = "0.78.0", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_react = {version = "0.107.0", path = "../swc_ecma_transforms_react"} swc_ecma_transforms_react = {version = "0.107.0", path = "../swc_ecma_transforms_react"}

View File

@ -24,7 +24,7 @@ indexmap = "1"
once_cell = "1.10.0" once_cell = "1.10.0"
rayon = { version = "1.5.1", optional = true } rayon = { version = "1.5.1", optional = true }
swc_atoms = { version = "0.2.0", path = "../swc_atoms" } swc_atoms = { version = "0.2.0", path = "../swc_atoms" }
swc_common = { version = "0.17.20", path = "../swc_common" } swc_common = { version = "0.17.23", path = "../swc_common" }
swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" } swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast" }
swc_ecma_visit = { version = "0.62.0", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.62.0", path = "../swc_ecma_visit" }
tracing = "0.1.32" tracing = "0.1.32"

View File

@ -17,7 +17,7 @@ debug = []
[dependencies] [dependencies]
num-bigint = {version = "0.4", features = ["serde"]} num-bigint = {version = "0.4", features = ["serde"]}
swc_atoms = {version = "0.2", path = "../swc_atoms"} swc_atoms = {version = "0.2", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"}
swc_visit = {version = "0.3.0", path = "../swc_visit"} swc_visit = {version = "0.3.0", path = "../swc_visit"}
tracing = "0.1.32" tracing = "0.1.32"

View File

@ -13,6 +13,6 @@ bench = false
[dependencies] [dependencies]
miette = {version = "4.2.1", features = ["fancy"]} miette = {version = "4.2.1", features = ["fancy"]}
swc_common = { version = "0.17.20", path = "../swc_common", features = [ swc_common = { version = "0.17.23", path = "../swc_common", features = [
"concurrent", "concurrent",
]} ]}

View File

@ -22,4 +22,4 @@ better_scoped_tls = {version = "0.1.0", path = "../better_scoped_tls"}
serde = {version = "1", features = ["derive"]} serde = {version = "1", features = ["derive"]}
serde_json = "1" serde_json = "1"
swc_atoms = {version = "0.2", path = "../swc_atoms"} swc_atoms = {version = "0.2", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}

View File

@ -23,7 +23,7 @@ rayon = "1.5.0"
serde = {version = "1", features = ["derive"]} serde = {version = "1", features = ["derive"]}
serde_json = "1.0.62" serde_json = "1.0.62"
swc_atoms = {version = "0.2", path = "../swc_atoms"} swc_atoms = {version = "0.2", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common", features = [ swc_common = { version = "0.17.23", path = "../swc_common", features = [
"concurrent", "concurrent",
"sourcemap", "sourcemap",
"tty-emitter", "tty-emitter",

View File

@ -15,4 +15,4 @@ bench = false
ahash = "0.7.6" ahash = "0.7.6"
indexmap = "1.7.0" indexmap = "1.7.0"
petgraph = "0.6" petgraph = "0.6"
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}

View File

@ -16,4 +16,4 @@ is-macro = "0.2.0"
serde = {version = "1.0.127", features = ["derive"]} serde = {version = "1.0.127", features = ["derive"]}
string_enum = {version = "0.3.1", path = "../string_enum/"} string_enum = {version = "0.3.1", path = "../string_enum/"}
swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}

View File

@ -16,12 +16,12 @@ bench = false
auto_impl = "0.5.0" auto_impl = "0.5.0"
bitflags = "1.3.2" bitflags = "1.3.2"
swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_html_ast = {version = "0.3.0", path = "../swc_html_ast"} swc_html_ast = {version = "0.3.0", path = "../swc_html_ast"}
swc_html_codegen_macros = {version = "0.1.0", path = "../swc_html_codegen_macros"} swc_html_codegen_macros = {version = "0.1.0", path = "../swc_html_codegen_macros"}
[dev-dependencies] [dev-dependencies]
swc_common = { version = "0.17.20", path = "../swc_common", features = [ swc_common = { version = "0.17.23", path = "../swc_common", features = [
"sourcemap", "sourcemap",
]} ]}
swc_html_parser = {version = "0.3.0", path = "../swc_html_parser"} swc_html_parser = {version = "0.3.0", path = "../swc_html_parser"}

View File

@ -25,7 +25,7 @@ once_cell = "1.10.0"
serde = { version = "1.0.118", features = ["derive"] } serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61" serde_json = "1.0.61"
swc_atoms = { version = "0.2.7", path = "../swc_atoms" } swc_atoms = { version = "0.2.7", path = "../swc_atoms" }
swc_common = { version = "0.17.20", path = "../swc_common" } swc_common = { version = "0.17.23", path = "../swc_common" }
swc_html_ast = { version = "0.3.0", path = "../swc_html_ast" } swc_html_ast = { version = "0.3.0", path = "../swc_html_ast" }
[dev-dependencies] [dev-dependencies]

View File

@ -13,6 +13,6 @@ bench = false
[dependencies] [dependencies]
swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_html_ast = {version = "0.3.0", path = "../swc_html_ast"} swc_html_ast = {version = "0.3.0", path = "../swc_html_ast"}
swc_visit = {version = "0.3.0", path = "../swc_visit"} swc_visit = {version = "0.3.0", path = "../swc_visit"}

View File

@ -17,4 +17,4 @@ bench = false
[dependencies] [dependencies]
ahash = "0.7.6" ahash = "0.7.6"
dashmap = "5.1.0" dashmap = "5.1.0"
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}

View File

@ -6,7 +6,7 @@ edition = "2018"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_plugin" name = "swc_plugin"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.48.0" version = "0.48.1"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -20,7 +20,7 @@ quote = ["swc_ecma_quote"]
[dependencies] [dependencies]
swc_atoms = { version = "0.2.0", path = "../swc_atoms" } swc_atoms = { version = "0.2.0", path = "../swc_atoms" }
swc_common = { version = "0.17.20", path = "../swc_common", features = [ swc_common = { version = "0.17.23", path = "../swc_common", features = [
"plugin-mode", "plugin-mode",
] } ] }
swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast", features = [ swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast", features = [
@ -29,7 +29,7 @@ swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast", features = [
swc_ecma_quote = { version = "0.13.0", path = "../swc_ecma_quote", optional = true } swc_ecma_quote = { version = "0.13.0", path = "../swc_ecma_quote", optional = true }
swc_ecma_visit = { version = "0.62.0", path = "../swc_ecma_visit" } swc_ecma_visit = { version = "0.62.0", path = "../swc_ecma_visit" }
swc_ecma_utils = { version = "0.81.0", path = "../swc_ecma_utils" } swc_ecma_utils = { version = "0.81.0", path = "../swc_ecma_utils" }
swc_plugin_proxy = { version = "0.2.0", path = "../swc_plugin_proxy", features = [ swc_plugin_proxy = { version = "0.2.1", path = "../swc_plugin_proxy", features = [
"plugin-mode", "plugin-mode",
] } ] }
swc_plugin_macro = { version = "0.4.0", path = "../swc_plugin_macro" } swc_plugin_macro = { version = "0.4.0", path = "../swc_plugin_macro" }

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_plugin_proxy" name = "swc_plugin_proxy"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.2.0" version = "0.2.1"
[lib] [lib]
bench = false bench = false
@ -19,6 +19,6 @@ plugin-mode = []
[dependencies] [dependencies]
better_scoped_tls = { version = "0.1.0", path = "../better_scoped_tls" } better_scoped_tls = { version = "0.1.0", path = "../better_scoped_tls" }
rkyv = "0.7.37" rkyv = "0.7.37"
swc_common = { version = "0.17.20", path = "../swc_common", features = [ swc_common = { version = "0.17.23", path = "../swc_common", features = [
"plugin-base", "plugin-base",
] } ] }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_plugin_runner" name = "swc_plugin_runner"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.53.0" version = "0.53.1"
[lib] [lib]
bench = false bench = false
@ -26,14 +26,14 @@ once_cell = "1.10.0"
parking_lot = "0.12.0" parking_lot = "0.12.0"
serde = { version = "1.0.126", features = ["derive"] } serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64" serde_json = "1.0.64"
swc_common = { version = "0.17.20", path = "../swc_common", features = [ swc_common = { version = "0.17.23", path = "../swc_common", features = [
"plugin-rt", "plugin-rt",
"concurrent", "concurrent",
] } ] }
swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast", features = [ swc_ecma_ast = { version = "0.76.0", path = "../swc_ecma_ast", features = [
"rkyv-impl", "rkyv-impl",
] } ] }
swc_plugin_proxy = { version = "0.2.0", path = "../swc_plugin_proxy", features = [ swc_plugin_proxy = { version = "0.2.1", path = "../swc_plugin_proxy", features = [
"plugin-rt", "plugin-rt",
] } ] }
tracing = "0.1.32" tracing = "0.1.32"

View File

@ -17,7 +17,7 @@ rayon = "1.5.1"
serde = {version = "1", features = ["derive", "rc"]} serde = {version = "1", features = ["derive", "rc"]}
serde_json = "1.0.72" serde_json = "1.0.72"
swc_atoms = {version = "0.2.9", path = "../swc_atoms"} swc_atoms = {version = "0.2.9", path = "../swc_atoms"}
swc_common = { version = "0.17.20", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"} swc_ecma_ast = {version = "0.76.0", path = "../swc_ecma_ast"}
swc_ecma_parser = {version = "0.102.0", path = "../swc_ecma_parser"} swc_ecma_parser = {version = "0.102.0", path = "../swc_ecma_parser"}
swc_ecma_transforms_base = {version = "0.78.0", path = "../swc_ecma_transforms_base"} swc_ecma_transforms_base = {version = "0.78.0", path = "../swc_ecma_transforms_base"}

View File

@ -18,7 +18,7 @@ once_cell = "1.10.0"
pretty_assertions = "1.1" pretty_assertions = "1.1"
regex = "1" regex = "1"
serde_json = "1.0.71" serde_json = "1.0.71"
swc_common = { version = "0.17.20", path = "../swc_common", features = [ swc_common = { version = "0.17.23", path = "../swc_common", features = [
"tty-emitter", "tty-emitter",
]} ]}
swc_error_reporters = {version = "0.1.0", path = "../swc_error_reporters"} swc_error_reporters = {version = "0.1.0", path = "../swc_error_reporters"}