chore: Publish crates

This commit is contained in:
Donny 2022-01-17 16:18:53 +09:00
parent 9a898951bc
commit be33d20baf
6 changed files with 16 additions and 13 deletions

View File

@ -10,6 +10,9 @@
- **(es/minifier)** Inline into interpolations in tagged template literals (#3287) ([fa5c063](https://github.com/swc-project/swc/commit/fa5c063144246ce634305399787e08498765eb8f)) - **(es/minifier)** Inline into interpolations in tagged template literals (#3287) ([fa5c063](https://github.com/swc-project/swc/commit/fa5c063144246ce634305399787e08498765eb8f))
- **(es/resolver)** Ignore names of jsx attributes (#3289) ([9a89895](https://github.com/swc-project/swc/commit/9a898951bc14e96af926e8a47a87d9220eaf4826))
### Features ### Features

8
Cargo.lock generated
View File

@ -2652,7 +2652,7 @@ dependencies = [
[[package]] [[package]]
name = "swc" name = "swc"
version = "0.116.3" version = "0.116.4"
dependencies = [ dependencies = [
"ahash", "ahash",
"anyhow", "anyhow",
@ -3096,7 +3096,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_transforms" name = "swc_ecma_transforms"
version = "0.113.1" version = "0.113.2"
dependencies = [ dependencies = [
"pretty_assertions 0.7.2", "pretty_assertions 0.7.2",
"sourcemap", "sourcemap",
@ -3122,7 +3122,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecma_transforms_base" name = "swc_ecma_transforms_base"
version = "0.57.0" version = "0.57.1"
dependencies = [ dependencies = [
"once_cell", "once_cell",
"phf", "phf",
@ -3365,7 +3365,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_ecmascript" name = "swc_ecmascript"
version = "0.110.3" version = "0.110.4"
dependencies = [ dependencies = [
"swc_ecma_ast", "swc_ecma_ast",
"swc_ecma_codegen", "swc_ecma_codegen",

View File

@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc" name = "swc"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.116.3" version = "0.116.4"
[lib] [lib]
name = "swc" name = "swc"
@ -55,7 +55,7 @@ swc_ecma_loader = {version = "0.27.0", path = "../swc_ecma_loader", features = [
swc_ecma_minifier = {version = "0.70.2", path = "../swc_ecma_minifier"} swc_ecma_minifier = {version = "0.70.2", path = "../swc_ecma_minifier"}
swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser"} swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser"}
swc_ecma_preset_env = {version = "0.86.0", path = "../swc_ecma_preset_env"} swc_ecma_preset_env = {version = "0.86.0", path = "../swc_ecma_preset_env"}
swc_ecma_transforms = {version = "0.113.1", path = "../swc_ecma_transforms", features = [ swc_ecma_transforms = {version = "0.113.2", path = "../swc_ecma_transforms", features = [
"compat", "compat",
"module", "module",
"optimization", "optimization",
@ -63,12 +63,12 @@ swc_ecma_transforms = {version = "0.113.1", path = "../swc_ecma_transforms", fea
"react", "react",
"typescript", "typescript",
]} ]}
swc_ecma_transforms_base = {version = "0.57.0", path = "../swc_ecma_transforms_base"} swc_ecma_transforms_base = {version = "0.57.1", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_compat = {version = "0.68.1", path = "../swc_ecma_transforms_compat"} swc_ecma_transforms_compat = {version = "0.68.1", path = "../swc_ecma_transforms_compat"}
swc_ecma_transforms_optimization = {version = "0.83.0", path = "../swc_ecma_transforms_optimization"} swc_ecma_transforms_optimization = {version = "0.83.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_utils = {version = "0.64.0", path = "../swc_ecma_utils"} swc_ecma_utils = {version = "0.64.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"} swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}
swc_ecmascript = {version = "0.110.3", path = "../swc_ecmascript"} swc_ecmascript = {version = "0.110.4", path = "../swc_ecmascript"}
swc_node_comments = {version = "0.4.0", path = "../swc_node_comments"} 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_plugin_runner = {version = "0.30.0", path = "../swc_plugin_runner", optional = true}
swc_visit = {version = "0.3.0", path = "../swc_visit"} swc_visit = {version = "0.3.0", path = "../swc_visit"}

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_transforms" name = "swc_ecma_transforms"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.113.1" version = "0.113.2"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -27,7 +27,7 @@ swc_atoms = {version = "0.2.0", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"} swc_common = {version = "0.17.0", path = "../swc_common"}
swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast"} swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast"}
swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser"} swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser"}
swc_ecma_transforms_base = {version = "0.57.0", path = "../swc_ecma_transforms_base"} swc_ecma_transforms_base = {version = "0.57.1", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_compat = {version = "0.68.1", path = "../swc_ecma_transforms_compat", optional = true} swc_ecma_transforms_compat = {version = "0.68.1", path = "../swc_ecma_transforms_compat", optional = true}
swc_ecma_transforms_module = {version = "0.74.0", path = "../swc_ecma_transforms_module", optional = true} swc_ecma_transforms_module = {version = "0.74.0", path = "../swc_ecma_transforms_module", optional = true}
swc_ecma_transforms_optimization = {version = "0.83.0", path = "../swc_ecma_transforms_optimization", optional = true} swc_ecma_transforms_optimization = {version = "0.83.0", path = "../swc_ecma_transforms_optimization", optional = true}

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecma_transforms_base" name = "swc_ecma_transforms_base"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.57.0" version = "0.57.1"
[features] [features]
concurrent = [ concurrent = [

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_ecmascript" name = "swc_ecmascript"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.110.3" version = "0.110.4"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -39,7 +39,7 @@ swc_ecma_dep_graph = {version = "0.58.0", path = "../swc_ecma_dep_graph", option
swc_ecma_minifier = {version = "0.70.2", path = "../swc_ecma_minifier", optional = true} swc_ecma_minifier = {version = "0.70.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_parser = {version = "0.87.0", path = "../swc_ecma_parser", optional = true, default-features = false}
swc_ecma_preset_env = {version = "0.86.0", path = "../swc_ecma_preset_env", optional = true} swc_ecma_preset_env = {version = "0.86.0", path = "../swc_ecma_preset_env", optional = true}
swc_ecma_transforms = {version = "0.113.1", path = "../swc_ecma_transforms", optional = true} swc_ecma_transforms = {version = "0.113.2", path = "../swc_ecma_transforms", optional = true}
swc_ecma_utils = {version = "0.64.0", path = "../swc_ecma_utils", optional = true} swc_ecma_utils = {version = "0.64.0", path = "../swc_ecma_utils", optional = true}
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit", optional = true} swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit", optional = true}