chore: Publish crates

This commit is contained in:
Donny 2022-01-27 16:29:12 +09:00
parent 90d8036b2b
commit 3a238df25a
4 changed files with 9 additions and 9 deletions

6
Cargo.lock generated
View File

@ -2652,7 +2652,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.119.1"
version = "0.119.2"
dependencies = [
"ahash",
"anyhow",
@ -3070,7 +3070,7 @@ dependencies = [
[[package]]
name = "swc_ecma_preset_env"
version = "0.87.0"
version = "0.87.1"
dependencies = [
"ahash",
"anyhow",
@ -3367,7 +3367,7 @@ dependencies = [
[[package]]
name = "swc_ecmascript"
version = "0.111.4"
version = "0.111.5"
dependencies = [
"swc_ecma_ast",
"swc_ecma_codegen",

View File

@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc"
repository = "https://github.com/swc-project/swc.git"
version = "0.119.1"
version = "0.119.2"
[lib]
name = "swc"
@ -54,7 +54,7 @@ swc_ecma_lints = {version = "0.11.0", path = "../swc_ecma_lints"}
swc_ecma_loader = {version = "0.28.0", path = "../swc_ecma_loader", features = ["lru", "node", "tsc"]}
swc_ecma_minifier = {version = "0.71.2", path = "../swc_ecma_minifier"}
swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser"}
swc_ecma_preset_env = {version = "0.87.0", path = "../swc_ecma_preset_env"}
swc_ecma_preset_env = {version = "0.87.1", path = "../swc_ecma_preset_env"}
swc_ecma_transforms = {version = "0.114.1", path = "../swc_ecma_transforms", features = [
"compat",
"module",
@ -68,7 +68,7 @@ swc_ecma_transforms_compat = {version = "0.68.6", path = "../swc_ecma_transforms
swc_ecma_transforms_optimization = {version = "0.84.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_utils = {version = "0.64.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.51.1", path = "../swc_ecma_visit"}
swc_ecmascript = {version = "0.111.4", path = "../swc_ecmascript"}
swc_ecmascript = {version = "0.111.5", path = "../swc_ecmascript"}
swc_node_comments = {version = "0.4.0", path = "../swc_node_comments"}
swc_plugin_runner = {version = "0.30.0", path = "../swc_plugin_runner", optional = true}
swc_visit = {version = "0.3.0", path = "../swc_visit"}

View File

@ -5,7 +5,7 @@ documentation = "https://rustdoc.swc.rs/swc_ecma_preset_env/"
edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_preset_env"
version = "0.87.0"
version = "0.87.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecmascript"
repository = "https://github.com/swc-project/swc.git"
version = "0.111.4"
version = "0.111.5"
[package.metadata.docs.rs]
all-features = true
@ -38,7 +38,7 @@ swc_ecma_codegen = {version = "0.89.1", path = "../swc_ecma_codegen", optional =
swc_ecma_dep_graph = {version = "0.58.0", path = "../swc_ecma_dep_graph", optional = true}
swc_ecma_minifier = {version = "0.71.2", path = "../swc_ecma_minifier", optional = true}
swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser", optional = true, default-features = false}
swc_ecma_preset_env = {version = "0.87.0", path = "../swc_ecma_preset_env", optional = true}
swc_ecma_preset_env = {version = "0.87.1", path = "../swc_ecma_preset_env", optional = true}
swc_ecma_transforms = {version = "0.114.1", path = "../swc_ecma_transforms", optional = true}
swc_ecma_utils = {version = "0.64.0", path = "../swc_ecma_utils", optional = true}
swc_ecma_visit = {version = "0.51.1", path = "../swc_ecma_visit", optional = true}