mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 13:51:19 +03:00
chore: Publish
This commit is contained in:
parent
7a31a3f530
commit
b9b7de0871
@ -56,7 +56,7 @@ swc_bundler = {version = "0.68.0", path = "./bundler"}
|
||||
swc_common = {version = "0.13.0", path = "./common", features = ["sourcemap", "concurrent"]}
|
||||
swc_ecma_ast = {version = "0.54.0", path = "./ecmascript/ast"}
|
||||
swc_ecma_codegen = {version = "0.74.0", path = "./ecmascript/codegen"}
|
||||
swc_ecma_ext_transforms = {version = "0.31.0", path = "./ecmascript/ext-transforms"}
|
||||
swc_ecma_ext_transforms = {version = "0.32.0", path = "./ecmascript/ext-transforms"}
|
||||
swc_ecma_loader = {version = "0.21.0", path = "./ecmascript/loader", features = ["lru", "node", "tsc"]}
|
||||
swc_ecma_minifier = {version = "0.37.0", path = "./ecmascript/minifier"}
|
||||
swc_ecma_parser = {version = "0.73.0", path = "./ecmascript/parser"}
|
||||
@ -69,8 +69,8 @@ swc_ecma_transforms = {version = "0.81.0", path = "./ecmascript/transforms", fea
|
||||
"react",
|
||||
"typescript",
|
||||
]}
|
||||
swc_ecma_transforms_base = {version = "0.36.0", path = "./ecmascript/transforms/base"}
|
||||
swc_ecma_utils = {version = "0.46.0", path = "./ecmascript/utils"}
|
||||
swc_ecma_transforms_base = {version = "0.37.0", path = "./ecmascript/transforms/base"}
|
||||
swc_ecma_utils = {version = "0.47.0", path = "./ecmascript/utils"}
|
||||
swc_ecma_visit = {version = "0.40.0", path = "./ecmascript/visit"}
|
||||
swc_ecmascript = {version = "0.73.0", path = "./ecmascript"}
|
||||
swc_visit = {version = "0.2.3", path = "./visit"}
|
||||
|
@ -41,9 +41,9 @@ swc_ecma_ast = {version = "0.54.0", path = "../ecmascript/ast"}
|
||||
swc_ecma_codegen = {version = "0.74.0", path = "../ecmascript/codegen"}
|
||||
swc_ecma_loader = {version = "0.21.0", path = "../ecmascript/loader"}
|
||||
swc_ecma_parser = {version = "0.73.0", path = "../ecmascript/parser"}
|
||||
swc_ecma_transforms_base = {version = "0.36.0", path = "../ecmascript/transforms/base"}
|
||||
swc_ecma_transforms_base = {version = "0.37.0", path = "../ecmascript/transforms/base"}
|
||||
swc_ecma_transforms_optimization = {version = "0.51.0", path = "../ecmascript/transforms/optimization"}
|
||||
swc_ecma_utils = {version = "0.46.0", path = "../ecmascript/utils"}
|
||||
swc_ecma_utils = {version = "0.47.0", path = "../ecmascript/utils"}
|
||||
swc_ecma_visit = {version = "0.40.0", path = "../ecmascript/visit"}
|
||||
tracing = "0.1.28"
|
||||
|
||||
@ -53,8 +53,8 @@ ntest = "0.7.2"
|
||||
path-clean = "=0.1.0"
|
||||
reqwest = {version = "0.11.4", features = ["blocking"]}
|
||||
sha-1 = "0.9"
|
||||
swc_ecma_transforms_react = {version = "0.47.0", path = "../ecmascript/transforms/react"}
|
||||
swc_ecma_transforms_typescript = {version = "0.47.0", path = "../ecmascript/transforms/typescript"}
|
||||
swc_ecma_transforms_react = {version = "0.48.0", path = "../ecmascript/transforms/react"}
|
||||
swc_ecma_transforms_typescript = {version = "0.48.0", path = "../ecmascript/transforms/typescript"}
|
||||
swc_node_base = {version = "0.4.0", path = "../node/base"}
|
||||
tempfile = "3.1.0"
|
||||
testing = {version = "0.14.0", path = "../testing"}
|
||||
|
@ -39,7 +39,7 @@ swc_ecma_minifier = {version = "0.37.0", path = "./minifier", optional = true}
|
||||
swc_ecma_parser = {version = "0.73.0", path = "./parser", optional = true, default-features = false}
|
||||
swc_ecma_preset_env = {version = "0.52.0", path = "./preset-env", optional = true}
|
||||
swc_ecma_transforms = {version = "0.81.0", path = "./transforms", optional = true}
|
||||
swc_ecma_utils = {version = "0.46.0", path = "./utils", optional = true}
|
||||
swc_ecma_utils = {version = "0.47.0", path = "./utils", optional = true}
|
||||
swc_ecma_visit = {version = "0.40.0", path = "./visit", optional = true}
|
||||
|
||||
[dev-dependencies]
|
||||
|
@ -5,7 +5,7 @@ documentation = "https://rustdoc.swc.rs/swc_ecma_ext_transforms/"
|
||||
edition = "2018"
|
||||
license = "Apache-2.0/MIT"
|
||||
name = "swc_ecma_ext_transforms"
|
||||
version = "0.31.0"
|
||||
version = "0.32.0"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
@ -15,5 +15,5 @@ swc_atoms = {version = "0.2", path = "../../atoms"}
|
||||
swc_common = {version = "0.13.0", path = "../../common"}
|
||||
swc_ecma_ast = {version = "0.54.0", path = "../ast"}
|
||||
swc_ecma_parser = {version = "0.73.0", path = "../parser"}
|
||||
swc_ecma_utils = {version = "0.46.0", path = "../utils"}
|
||||
swc_ecma_utils = {version = "0.47.0", path = "../utils"}
|
||||
swc_ecma_visit = {version = "0.40.0", path = "../visit"}
|
||||
|
@ -29,8 +29,8 @@ swc_ecma_ast = {version = "0.54.0", path = "../ast"}
|
||||
swc_ecma_codegen = {version = "0.74.0", path = "../codegen"}
|
||||
swc_ecma_parser = {version = "0.73.0", path = "../parser"}
|
||||
swc_ecma_transforms = {version = "0.81.0", path = "../transforms/", features = ["optimization"]}
|
||||
swc_ecma_transforms_base = {version = "0.36.0", path = "../transforms/base"}
|
||||
swc_ecma_utils = {version = "0.46.0", path = "../utils"}
|
||||
swc_ecma_transforms_base = {version = "0.37.0", path = "../transforms/base"}
|
||||
swc_ecma_utils = {version = "0.47.0", path = "../utils"}
|
||||
swc_ecma_visit = {version = "0.40.0", path = "../visit"}
|
||||
tracing = "0.1.28"
|
||||
unicode-xid = "0.2.2"
|
||||
|
@ -23,7 +23,7 @@ swc_atoms = {version = "0.2", path = "../../atoms"}
|
||||
swc_common = {version = "0.13.0", path = "../../common"}
|
||||
swc_ecma_ast = {version = "0.54.0", path = "../ast"}
|
||||
swc_ecma_transforms = {version = "0.81.0", path = "../transforms", features = ["compat", "proposal"]}
|
||||
swc_ecma_utils = {version = "0.46.0", path = "../utils"}
|
||||
swc_ecma_utils = {version = "0.47.0", path = "../utils"}
|
||||
swc_ecma_visit = {version = "0.40.0", path = "../visit"}
|
||||
walkdir = "2"
|
||||
|
||||
|
@ -26,14 +26,14 @@ swc_atoms = {version = "0.2.0", path = "../../atoms"}
|
||||
swc_common = {version = "0.13.0", path = "../../common"}
|
||||
swc_ecma_ast = {version = "0.54.0", path = "../ast"}
|
||||
swc_ecma_parser = {version = "0.73.0", path = "../parser"}
|
||||
swc_ecma_transforms_base = {version = "0.36.0", path = "./base"}
|
||||
swc_ecma_transforms_compat = {version = "0.41.0", path = "./compat", optional = true}
|
||||
swc_ecma_transforms_module = {version = "0.45.0", path = "./module", optional = true}
|
||||
swc_ecma_transforms_base = {version = "0.37.0", path = "./base"}
|
||||
swc_ecma_transforms_compat = {version = "0.42.0", path = "./compat", optional = true}
|
||||
swc_ecma_transforms_module = {version = "0.46.0", path = "./module", optional = true}
|
||||
swc_ecma_transforms_optimization = {version = "0.51.0", path = "./optimization", optional = true}
|
||||
swc_ecma_transforms_proposal = {version = "0.45.0", path = "./proposal", optional = true}
|
||||
swc_ecma_transforms_react = {version = "0.47.0", path = "./react", optional = true}
|
||||
swc_ecma_transforms_typescript = {version = "0.47.0", path = "./typescript", optional = true}
|
||||
swc_ecma_utils = {version = "0.46.0", path = "../utils"}
|
||||
swc_ecma_transforms_proposal = {version = "0.46.0", path = "./proposal", optional = true}
|
||||
swc_ecma_transforms_react = {version = "0.48.0", path = "./react", optional = true}
|
||||
swc_ecma_transforms_typescript = {version = "0.48.0", path = "./typescript", optional = true}
|
||||
swc_ecma_utils = {version = "0.47.0", path = "../utils"}
|
||||
swc_ecma_visit = {version = "0.40.0", path = "../visit"}
|
||||
unicode-xid = "0.2"
|
||||
|
||||
@ -41,7 +41,7 @@ unicode-xid = "0.2"
|
||||
pretty_assertions = "0.6"
|
||||
sourcemap = "6"
|
||||
swc_ecma_codegen = {version = "0.74.0", path = "../codegen"}
|
||||
swc_ecma_transforms_testing = {version = "0.37.0", path = "./testing"}
|
||||
swc_ecma_transforms_testing = {version = "0.38.0", path = "./testing"}
|
||||
tempfile = "3"
|
||||
testing = {version = "0.14.0", path = "../../testing"}
|
||||
walkdir = "2"
|
||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
||||
license = "Apache-2.0/MIT"
|
||||
name = "swc_ecma_transforms_base"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.36.0"
|
||||
version = "0.37.0"
|
||||
|
||||
[dependencies]
|
||||
once_cell = "1.5.2"
|
||||
@ -17,7 +17,7 @@ swc_atoms = {version = "0.2", path = "../../../atoms"}
|
||||
swc_common = {version = "0.13.0", path = "../../../common"}
|
||||
swc_ecma_ast = {version = "0.54.0", path = "../../ast"}
|
||||
swc_ecma_parser = {version = "0.73.0", path = "../../parser"}
|
||||
swc_ecma_utils = {version = "0.46.0", path = "../../utils"}
|
||||
swc_ecma_utils = {version = "0.47.0", path = "../../utils"}
|
||||
swc_ecma_visit = {version = "0.40.0", path = "../../visit"}
|
||||
|
||||
[dev-dependencies]
|
||||
|
@ -6,12 +6,12 @@ edition = "2018"
|
||||
license = "Apache-2.0/MIT"
|
||||
name = "swc_ecma_transforms_classes"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.22.0"
|
||||
version = "0.23.0"
|
||||
|
||||
[dependencies]
|
||||
swc_atoms = {version = "0.2.6", path = "../../../atoms"}
|
||||
swc_common = {version = "0.13.0", path = "../../../common"}
|
||||
swc_ecma_ast = {version = "0.54.0", path = "../../ast"}
|
||||
swc_ecma_transforms_base = {version = "0.36.0", path = "../base"}
|
||||
swc_ecma_utils = {version = "0.46.0", path = "../../utils"}
|
||||
swc_ecma_transforms_base = {version = "0.37.0", path = "../base"}
|
||||
swc_ecma_utils = {version = "0.47.0", path = "../../utils"}
|
||||
swc_ecma_visit = {version = "0.40.0", path = "../../visit"}
|
||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
||||
license = "Apache-2.0/MIT"
|
||||
name = "swc_ecma_transforms_compat"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.41.0"
|
||||
version = "0.42.0"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
@ -21,13 +21,13 @@ smallvec = "1.6.0"
|
||||
swc_atoms = {version = "0.2.5", path = "../../../atoms"}
|
||||
swc_common = {version = "0.13.0", path = "../../../common"}
|
||||
swc_ecma_ast = {version = "0.54.0", path = "../../ast"}
|
||||
swc_ecma_transforms_base = {version = "0.36.0", path = "../base"}
|
||||
swc_ecma_transforms_classes = {version = "0.22.0", path = "../classes"}
|
||||
swc_ecma_transforms_base = {version = "0.37.0", path = "../base"}
|
||||
swc_ecma_transforms_classes = {version = "0.23.0", path = "../classes"}
|
||||
swc_ecma_transforms_macros = {version = "0.2.1", path = "../macros"}
|
||||
swc_ecma_utils = {version = "0.46.0", path = "../../utils"}
|
||||
swc_ecma_utils = {version = "0.47.0", path = "../../utils"}
|
||||
swc_ecma_visit = {version = "0.40.0", path = "../../visit"}
|
||||
|
||||
[dev-dependencies]
|
||||
swc_ecma_parser = {version = "0.73.0", path = "../../parser"}
|
||||
swc_ecma_transforms_testing = {version = "0.37.0", path = "../testing"}
|
||||
swc_ecma_transforms_testing = {version = "0.38.0", path = "../testing"}
|
||||
testing = {version = "0.14.0", path = "../../../testing"}
|
||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
||||
license = "Apache-2.0/MIT"
|
||||
name = "swc_ecma_transforms_module"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.45.0"
|
||||
version = "0.46.0"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
@ -21,11 +21,11 @@ swc_common = {version = "0.13.0", path = "../../../common"}
|
||||
swc_ecma_ast = {version = "0.54.0", path = "../../ast"}
|
||||
swc_ecma_loader = {version = "0.21.0", path = "../../loader", features = ["node"]}
|
||||
swc_ecma_parser = {version = "0.73.0", path = "../../parser"}
|
||||
swc_ecma_transforms_base = {version = "0.36.0", path = "../base"}
|
||||
swc_ecma_utils = {version = "0.46.0", path = "../../utils"}
|
||||
swc_ecma_transforms_base = {version = "0.37.0", path = "../base"}
|
||||
swc_ecma_utils = {version = "0.47.0", path = "../../utils"}
|
||||
swc_ecma_visit = {version = "0.40.0", path = "../../visit"}
|
||||
|
||||
[dev-dependencies]
|
||||
swc_ecma_transforms_compat = {version = "0.41.0", path = "../compat"}
|
||||
swc_ecma_transforms_testing = {version = "0.37.0", path = "../testing/"}
|
||||
swc_ecma_transforms_compat = {version = "0.42.0", path = "../compat"}
|
||||
swc_ecma_transforms_testing = {version = "0.38.0", path = "../testing/"}
|
||||
testing = {version = "0.14.0", path = "../../../testing/"}
|
||||
|
@ -29,16 +29,16 @@ swc_atoms = {version = "0.2", path = "../../../atoms"}
|
||||
swc_common = {version = "0.13.0", path = "../../../common"}
|
||||
swc_ecma_ast = {version = "0.54.0", path = "../../ast"}
|
||||
swc_ecma_parser = {version = "0.73.0", path = "../../parser"}
|
||||
swc_ecma_transforms_base = {version = "0.36.0", path = "../base"}
|
||||
swc_ecma_utils = {version = "0.46.0", path = "../../utils"}
|
||||
swc_ecma_transforms_base = {version = "0.37.0", path = "../base"}
|
||||
swc_ecma_utils = {version = "0.47.0", path = "../../utils"}
|
||||
swc_ecma_visit = {version = "0.40.0", path = "../../visit"}
|
||||
tracing = "0.1.28"
|
||||
|
||||
[dev-dependencies]
|
||||
swc_ecma_transforms_compat = {version = "0.41.0", path = "../compat"}
|
||||
swc_ecma_transforms_module = {version = "0.45.0", path = "../module"}
|
||||
swc_ecma_transforms_proposal = {version = "0.45.0", path = "../proposal"}
|
||||
swc_ecma_transforms_react = {version = "0.47.0", path = "../react"}
|
||||
swc_ecma_transforms_testing = {version = "0.37.0", path = "../testing"}
|
||||
swc_ecma_transforms_typescript = {version = "0.47.0", path = "../typescript"}
|
||||
swc_ecma_transforms_compat = {version = "0.42.0", path = "../compat"}
|
||||
swc_ecma_transforms_module = {version = "0.46.0", path = "../module"}
|
||||
swc_ecma_transforms_proposal = {version = "0.46.0", path = "../proposal"}
|
||||
swc_ecma_transforms_react = {version = "0.48.0", path = "../react"}
|
||||
swc_ecma_transforms_testing = {version = "0.38.0", path = "../testing"}
|
||||
swc_ecma_transforms_typescript = {version = "0.48.0", path = "../typescript"}
|
||||
testing = {version = "0.14.0", path = "../../../testing"}
|
||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
||||
license = "Apache-2.0/MIT"
|
||||
name = "swc_ecma_transforms_proposal"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.45.0"
|
||||
version = "0.46.0"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
@ -23,15 +23,15 @@ swc_common = {version = "0.13.0", path = "../../../common"}
|
||||
swc_ecma_ast = {version = "0.54.0", path = "../../ast"}
|
||||
swc_ecma_loader = {version = "0.21.0", path = "../../loader", optional = true}
|
||||
swc_ecma_parser = {version = "0.73.0", path = "../../parser"}
|
||||
swc_ecma_transforms_base = {version = "0.36.0", path = "../base"}
|
||||
swc_ecma_transforms_classes = {version = "0.22.0", path = "../classes"}
|
||||
swc_ecma_transforms_base = {version = "0.37.0", path = "../base"}
|
||||
swc_ecma_transforms_classes = {version = "0.23.0", path = "../classes"}
|
||||
swc_ecma_transforms_macros = {version = "0.2.1", path = "../macros"}
|
||||
swc_ecma_utils = {version = "0.46.0", path = "../../utils"}
|
||||
swc_ecma_utils = {version = "0.47.0", path = "../../utils"}
|
||||
swc_ecma_visit = {version = "0.40.0", path = "../../visit"}
|
||||
|
||||
[dev-dependencies]
|
||||
serde_json = "1.0.66"
|
||||
swc_ecma_transforms_compat = {version = "0.41.0", path = "../compat"}
|
||||
swc_ecma_transforms_module = {version = "0.45.0", path = "../module"}
|
||||
swc_ecma_transforms_testing = {version = "0.37.0", path = "../testing"}
|
||||
swc_ecma_transforms_compat = {version = "0.42.0", path = "../compat"}
|
||||
swc_ecma_transforms_module = {version = "0.46.0", path = "../module"}
|
||||
swc_ecma_transforms_testing = {version = "0.38.0", path = "../testing"}
|
||||
testing = {version = "0.14.0", path = "../../../testing"}
|
||||
|
@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0/MIT"
|
||||
name = "swc_ecma_transforms_react"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.47.0"
|
||||
version = "0.48.0"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
@ -24,13 +24,13 @@ swc_atoms = {version = "0.2", path = "../../../atoms"}
|
||||
swc_common = {version = "0.13.0", path = "../../../common"}
|
||||
swc_ecma_ast = {version = "0.54.0", path = "../../ast"}
|
||||
swc_ecma_parser = {version = "0.73.0", path = "../../parser"}
|
||||
swc_ecma_transforms_base = {version = "0.36.0", path = "../base"}
|
||||
swc_ecma_utils = {version = "0.46.0", path = "../../utils"}
|
||||
swc_ecma_transforms_base = {version = "0.37.0", path = "../base"}
|
||||
swc_ecma_utils = {version = "0.47.0", path = "../../utils"}
|
||||
swc_ecma_visit = {version = "0.40.0", path = "../../visit"}
|
||||
|
||||
[dev-dependencies]
|
||||
swc_ecma_codegen = {version = "0.74.0", path = "../../codegen/"}
|
||||
swc_ecma_transforms_compat = {version = "0.41.0", path = "../compat/"}
|
||||
swc_ecma_transforms_module = {version = "0.45.0", path = "../module"}
|
||||
swc_ecma_transforms_testing = {version = "0.37.0", path = "../testing/"}
|
||||
swc_ecma_transforms_compat = {version = "0.42.0", path = "../compat/"}
|
||||
swc_ecma_transforms_module = {version = "0.46.0", path = "../module"}
|
||||
swc_ecma_transforms_testing = {version = "0.38.0", path = "../testing/"}
|
||||
testing = {version = "0.14.0", path = "../../../testing"}
|
||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
||||
license = "Apache-2.0/MIT"
|
||||
name = "swc_ecma_transforms_testing"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.37.0"
|
||||
version = "0.38.0"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
@ -19,8 +19,8 @@ swc_common = {version = "0.13.0", path = "../../../common"}
|
||||
swc_ecma_ast = {version = "0.54.0", path = "../../ast"}
|
||||
swc_ecma_codegen = {version = "0.74.0", path = "../../codegen"}
|
||||
swc_ecma_parser = {version = "0.73.0", path = "../../parser"}
|
||||
swc_ecma_transforms_base = {version = "0.36.0", path = "../base"}
|
||||
swc_ecma_utils = {version = "0.46.0", path = "../../utils"}
|
||||
swc_ecma_transforms_base = {version = "0.37.0", path = "../base"}
|
||||
swc_ecma_utils = {version = "0.47.0", path = "../../utils"}
|
||||
swc_ecma_visit = {version = "0.40.0", path = "../../visit"}
|
||||
tempfile = "3.1.0"
|
||||
testing = {version = "0.14.0", path = "../../../testing"}
|
||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
||||
license = "Apache-2.0/MIT"
|
||||
name = "swc_ecma_transforms_typescript"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.47.0"
|
||||
version = "0.48.0"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
@ -15,15 +15,15 @@ swc_atoms = {version = "0.2", path = "../../../atoms"}
|
||||
swc_common = {version = "0.13.0", path = "../../../common"}
|
||||
swc_ecma_ast = {version = "0.54.0", path = "../../ast"}
|
||||
swc_ecma_parser = {version = "0.73.0", path = "../../parser"}
|
||||
swc_ecma_transforms_base = {version = "0.36.0", path = "../base"}
|
||||
swc_ecma_utils = {version = "0.46.0", path = "../../utils"}
|
||||
swc_ecma_transforms_base = {version = "0.37.0", path = "../base"}
|
||||
swc_ecma_utils = {version = "0.47.0", path = "../../utils"}
|
||||
swc_ecma_visit = {version = "0.40.0", path = "../../visit"}
|
||||
|
||||
[dev-dependencies]
|
||||
swc_ecma_codegen = {version = "0.74.0", path = "../../codegen"}
|
||||
swc_ecma_transforms_compat = {version = "0.41.0", path = "../compat"}
|
||||
swc_ecma_transforms_module = {version = "0.45.0", path = "../module"}
|
||||
swc_ecma_transforms_proposal = {version = "0.45.0", path = "../proposal/"}
|
||||
swc_ecma_transforms_testing = {version = "0.37.0", path = "../testing"}
|
||||
swc_ecma_transforms_compat = {version = "0.42.0", path = "../compat"}
|
||||
swc_ecma_transforms_module = {version = "0.46.0", path = "../module"}
|
||||
swc_ecma_transforms_proposal = {version = "0.46.0", path = "../proposal/"}
|
||||
swc_ecma_transforms_testing = {version = "0.38.0", path = "../testing"}
|
||||
testing = {version = "0.14.0", path = "../../../testing"}
|
||||
walkdir = "2.3.1"
|
||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
||||
license = "Apache-2.0/MIT"
|
||||
name = "swc_ecma_utils"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.46.2"
|
||||
version = "0.47.0"
|
||||
|
||||
[features]
|
||||
# Process in parallel.
|
||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
||||
license = "Apache-2.0/MIT"
|
||||
name = "swc_plugin_testing"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.8.0"
|
||||
version = "0.9.0"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
@ -16,6 +16,6 @@ swc_atoms = {version = "0.2.7", path = "../../atoms"}
|
||||
swc_common = {version = "0.13.0", path = "../../common"}
|
||||
swc_ecma_ast = {version = "0.54.0", path = "../../ecmascript/ast"}
|
||||
swc_ecma_codegen = {version = "0.74.0", path = "../../ecmascript/codegen"}
|
||||
swc_ecma_utils = {version = "0.46.0", path = "../../ecmascript/utils"}
|
||||
swc_ecma_utils = {version = "0.47.0", path = "../../ecmascript/utils"}
|
||||
swc_ecma_visit = {version = "0.40.0", path = "../../ecmascript/visit"}
|
||||
swc_plugin = {version = "0.6.0", path = "../"}
|
||||
|
Loading…
Reference in New Issue
Block a user