mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
chore: Publish crates
This commit is contained in:
parent
0391d2c1a9
commit
8eb7804293
64
Cargo.lock
generated
64
Cargo.lock
generated
@ -3411,7 +3411,7 @@ dependencies = [
|
||||
"swc_ecma_ast 0.90.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"swc_ecma_loader 0.39.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"swc_ecma_transforms 0.183.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"swc_node_bundler 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"swc_node_bundler 0.0.1",
|
||||
"swc_nodejs_common 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"swc_plugin_proxy 0.18.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"swc_plugin_runner 0.71.6",
|
||||
@ -3422,7 +3422,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_core"
|
||||
version = "0.7.7"
|
||||
version = "0.7.8"
|
||||
dependencies = [
|
||||
"binding_macros 0.2.3",
|
||||
"once_cell",
|
||||
@ -3439,7 +3439,7 @@ dependencies = [
|
||||
"swc_ecma_utils 0.99.4",
|
||||
"swc_ecma_visit 0.76.5",
|
||||
"swc_node_base 0.5.5",
|
||||
"swc_node_bundler 0.0.1",
|
||||
"swc_node_bundler 0.0.2",
|
||||
"swc_nodejs_common 0.0.1",
|
||||
"swc_plugin",
|
||||
"swc_plugin_macro",
|
||||
@ -4876,35 +4876,6 @@ dependencies = [
|
||||
"tikv-jemallocator",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "swc_node_bundler"
|
||||
version = "0.0.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"dashmap",
|
||||
"is-macro",
|
||||
"once_cell",
|
||||
"pretty_assertions",
|
||||
"regex",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"string_enum 0.3.1",
|
||||
"swc 0.214.6",
|
||||
"swc_atoms 0.4.5",
|
||||
"swc_bundler 0.177.3",
|
||||
"swc_common 0.27.6",
|
||||
"swc_ecma_ast 0.90.7",
|
||||
"swc_ecma_codegen 0.121.4",
|
||||
"swc_ecma_loader 0.39.4",
|
||||
"swc_ecma_parser 0.117.4",
|
||||
"swc_ecma_transforms 0.183.3",
|
||||
"swc_ecma_utils 0.99.4",
|
||||
"swc_ecma_visit 0.76.5",
|
||||
"swc_node_base 0.5.5",
|
||||
"testing",
|
||||
"tracing",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "swc_node_bundler"
|
||||
version = "0.0.1"
|
||||
@ -4934,6 +4905,35 @@ dependencies = [
|
||||
"tracing",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "swc_node_bundler"
|
||||
version = "0.0.2"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"dashmap",
|
||||
"is-macro",
|
||||
"once_cell",
|
||||
"pretty_assertions",
|
||||
"regex",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"string_enum 0.3.1",
|
||||
"swc 0.214.6",
|
||||
"swc_atoms 0.4.5",
|
||||
"swc_bundler 0.177.3",
|
||||
"swc_common 0.27.6",
|
||||
"swc_ecma_ast 0.90.7",
|
||||
"swc_ecma_codegen 0.121.4",
|
||||
"swc_ecma_loader 0.39.4",
|
||||
"swc_ecma_parser 0.117.4",
|
||||
"swc_ecma_transforms 0.183.3",
|
||||
"swc_ecma_utils 0.99.4",
|
||||
"swc_ecma_visit 0.76.5",
|
||||
"swc_node_base 0.5.5",
|
||||
"testing",
|
||||
"tracing",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "swc_node_comments"
|
||||
version = "0.14.4"
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_core"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.7.7"
|
||||
version = "0.7.8"
|
||||
[package.metadata.docs.rs]
|
||||
features = [
|
||||
"common_perf",
|
||||
@ -238,7 +238,7 @@ swc_ecma_transforms_testing = { optional = true, version = "0.105.4", path = "..
|
||||
swc_ecma_utils = { optional = true, version = "0.99.4", path = "../swc_ecma_utils" }
|
||||
swc_ecma_visit = { optional = true, version = "0.76.5", path = "../swc_ecma_visit" }
|
||||
swc_node_base = { optional = true, version = "0.5.5", path = "../swc_node_base" }
|
||||
swc_node_bundler = { optional = true, version = "0.0.1", path = "../swc_node_bundler" }
|
||||
swc_node_bundler = { optional = true, version = "0.0.2", path = "../swc_node_bundler" }
|
||||
swc_nodejs_common = { optional = true, version = "0.0.1", path = "../swc_nodejs_common" }
|
||||
swc_plugin = { optional = true, version = "0.89.0", path = "../swc_plugin" }
|
||||
swc_plugin_macro = { optional = true, version = "0.9.3", path = "../swc_plugin_macro" }
|
||||
|
@ -7,7 +7,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_node_bundler"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.0.1"
|
||||
version = "0.0.2"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
Loading…
Reference in New Issue
Block a user