chore: Publish crates

This commit is contained in:
Donny/강동윤 2022-07-13 16:35:06 +09:00
parent 538b86f52f
commit 902ac55c63
4 changed files with 9 additions and 9 deletions

6
Cargo.lock generated
View File

@ -3089,7 +3089,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_common" name = "swc_common"
version = "0.24.0" version = "0.24.1"
dependencies = [ dependencies = [
"ahash", "ahash",
"anyhow", "anyhow",
@ -4109,7 +4109,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_plugin" name = "swc_plugin"
version = "0.80.0" version = "0.80.1"
dependencies = [ dependencies = [
"swc_atoms", "swc_atoms",
"swc_common", "swc_common",
@ -4130,7 +4130,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_plugin_proxy" name = "swc_plugin_proxy"
version = "0.12.0" version = "0.12.1"
dependencies = [ dependencies = [
"better_scoped_tls", "better_scoped_tls",
"bytecheck", "bytecheck",

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.24.0" version = "0.24.1"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true

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.80.0" version = "0.80.1"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -20,13 +20,13 @@ 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.24.0", path = "../swc_common", features = [ swc_common = { version = "0.24.1", path = "../swc_common", features = [
"plugin-mode", "plugin-mode",
"plugin_transform_schema_v1" "plugin_transform_schema_v1"
] } ] }
swc_ecma_quote = { version = "0.26.0", path = "../swc_ecma_quote", optional = true } swc_ecma_quote = { version = "0.26.0", path = "../swc_ecma_quote", optional = true }
swc_ecmascript = { version = "0.181.0", path = "../swc_ecmascript", features = ["utils", "visit", "rkyv-impl"] } swc_ecmascript = { version = "0.181.0", path = "../swc_ecmascript", features = ["utils", "visit", "rkyv-impl"] }
swc_plugin_proxy = { version = "0.12.0", path = "../swc_plugin_proxy", features = [ swc_plugin_proxy = { version = "0.12.1", path = "../swc_plugin_proxy", features = [
"plugin-mode", "plugin-mode",
] } ] }
swc_plugin_macro = { version = "0.6.0", path = "../swc_plugin_macro" } swc_plugin_macro = { version = "0.6.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.12.0" version = "0.12.1"
[lib] [lib]
bench = false bench = false
@ -20,7 +20,7 @@ plugin-mode = []
better_scoped_tls = { version = "0.1.0", path = "../better_scoped_tls" } better_scoped_tls = { version = "0.1.0", path = "../better_scoped_tls" }
bytecheck = "0.6.8" bytecheck = "0.6.8"
rkyv = "0.7.39" rkyv = "0.7.39"
swc_common = { version = "0.24.0", path = "../swc_common", features = [ swc_common = { version = "0.24.1", path = "../swc_common", features = [
"plugin-base", "plugin-base",
] } ] }
swc_ecma_ast = {version = "0.85.0", path = "../swc_ecma_ast"} swc_ecma_ast = {version = "0.85.0", path = "../swc_ecma_ast"}