mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 06:36:08 +03:00
chore: Publish crates
This commit is contained in:
parent
b1d24702e3
commit
fd606cb286
@ -67,6 +67,9 @@
|
|||||||
|
|
||||||
- **(es/ast)** Change definition of optional chaining expressions (#3645) ([2cb66ae](https://github.com/swc-project/swc/commit/2cb66ae075ba45968f302d5cd756b0ce0dbcee41))
|
- **(es/ast)** Change definition of optional chaining expressions (#3645) ([2cb66ae](https://github.com/swc-project/swc/commit/2cb66ae075ba45968f302d5cd756b0ce0dbcee41))
|
||||||
|
|
||||||
|
|
||||||
|
- **(preset-env)** Extract common logic for `browserslist` support (#3674) ([b1d2470](https://github.com/swc-project/swc/commit/b1d24702e3ca857c60b0c91d7f81652fd178ea31))
|
||||||
|
|
||||||
### Build
|
### Build
|
||||||
|
|
||||||
|
|
||||||
|
12
Cargo.lock
generated
12
Cargo.lock
generated
@ -2639,7 +2639,7 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc"
|
name = "swc"
|
||||||
version = "0.132.0"
|
version = "0.133.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ahash",
|
"ahash",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
@ -2737,7 +2737,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_cli"
|
name = "swc_cli"
|
||||||
version = "0.6.1"
|
version = "0.7.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"clap",
|
"clap",
|
||||||
@ -3051,7 +3051,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_ecma_preset_env"
|
name = "swc_ecma_preset_env"
|
||||||
version = "0.93.2"
|
version = "0.94.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ahash",
|
"ahash",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
@ -3347,7 +3347,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_ecmascript"
|
name = "swc_ecmascript"
|
||||||
version = "0.117.0"
|
version = "0.118.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"swc_ecma_ast",
|
"swc_ecma_ast",
|
||||||
"swc_ecma_codegen",
|
"swc_ecma_codegen",
|
||||||
@ -3383,7 +3383,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_estree_compat"
|
name = "swc_estree_compat"
|
||||||
version = "0.50.0"
|
version = "0.51.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ahash",
|
"ahash",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
@ -3572,7 +3572,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_webpack_ast"
|
name = "swc_webpack_ast"
|
||||||
version = "0.48.0"
|
version = "0.49.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"rayon",
|
"rayon",
|
||||||
|
@ -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.132.0"
|
version = "0.133.0"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "swc"
|
name = "swc"
|
||||||
@ -54,7 +54,7 @@ swc_ecma_lints = {version = "0.17.0", path = "../swc_ecma_lints"}
|
|||||||
swc_ecma_loader = {version = "0.28.0", path = "../swc_ecma_loader", features = ["lru", "node", "tsc"]}
|
swc_ecma_loader = {version = "0.28.0", path = "../swc_ecma_loader", features = ["lru", "node", "tsc"]}
|
||||||
swc_ecma_minifier = {version = "0.77.0", path = "../swc_ecma_minifier"}
|
swc_ecma_minifier = {version = "0.77.0", path = "../swc_ecma_minifier"}
|
||||||
swc_ecma_parser = {version = "0.91.0", path = "../swc_ecma_parser"}
|
swc_ecma_parser = {version = "0.91.0", path = "../swc_ecma_parser"}
|
||||||
swc_ecma_preset_env = {version = "0.93.0", path = "../swc_ecma_preset_env"}
|
swc_ecma_preset_env = {version = "0.94.0", path = "../swc_ecma_preset_env"}
|
||||||
swc_ecma_transforms = {version = "0.120.0", path = "../swc_ecma_transforms", features = [
|
swc_ecma_transforms = {version = "0.120.0", path = "../swc_ecma_transforms", features = [
|
||||||
"compat",
|
"compat",
|
||||||
"module",
|
"module",
|
||||||
@ -68,7 +68,7 @@ swc_ecma_transforms_compat = {version = "0.73.0", path = "../swc_ecma_transforms
|
|||||||
swc_ecma_transforms_optimization = {version = "0.90.0", path = "../swc_ecma_transforms_optimization"}
|
swc_ecma_transforms_optimization = {version = "0.90.0", path = "../swc_ecma_transforms_optimization"}
|
||||||
swc_ecma_utils = {version = "0.68.0", path = "../swc_ecma_utils"}
|
swc_ecma_utils = {version = "0.68.0", path = "../swc_ecma_utils"}
|
||||||
swc_ecma_visit = {version = "0.54.0", path = "../swc_ecma_visit"}
|
swc_ecma_visit = {version = "0.54.0", path = "../swc_ecma_visit"}
|
||||||
swc_ecmascript = {version = "0.117.0", path = "../swc_ecmascript"}
|
swc_ecmascript = {version = "0.118.0", 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.38.0", path = "../swc_plugin_runner", optional = true}
|
swc_plugin_runner = {version = "0.38.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"}
|
||||||
|
@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_cli"
|
name = "swc_cli"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.6.1"
|
version = "0.7.0"
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "swc"
|
name = "swc"
|
||||||
@ -17,7 +17,7 @@ anyhow = "1.0.53"
|
|||||||
clap = { version = "3.1.0", features = ["derive", "wrap_help"] }
|
clap = { version = "3.1.0", features = ["derive", "wrap_help"] }
|
||||||
walkdir = "2"
|
walkdir = "2"
|
||||||
rayon = "1"
|
rayon = "1"
|
||||||
swc = { version = "0.132.0", path = "../swc" }
|
swc = { version = "0.133.0", path = "../swc" }
|
||||||
swc_common = { version = "0.17.5", path = "../swc_common" }
|
swc_common = { version = "0.17.5", path = "../swc_common" }
|
||||||
relative-path = "1.6.1"
|
relative-path = "1.6.1"
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
|
@ -5,7 +5,7 @@ documentation = "https://rustdoc.swc.rs/swc_ecma_preset_env/"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_ecma_preset_env"
|
name = "swc_ecma_preset_env"
|
||||||
version = "0.93.2"
|
version = "0.94.0"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
@ -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.117.0"
|
version = "0.118.0"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
@ -38,7 +38,7 @@ swc_ecma_codegen = {version = "0.93.0", path = "../swc_ecma_codegen", optional =
|
|||||||
swc_ecma_dep_graph = {version = "0.62.0", path = "../swc_ecma_dep_graph", optional = true}
|
swc_ecma_dep_graph = {version = "0.62.0", path = "../swc_ecma_dep_graph", optional = true}
|
||||||
swc_ecma_minifier = {version = "0.77.0", path = "../swc_ecma_minifier", optional = true}
|
swc_ecma_minifier = {version = "0.77.0", path = "../swc_ecma_minifier", optional = true}
|
||||||
swc_ecma_parser = {version = "0.91.0", path = "../swc_ecma_parser", optional = true, default-features = false}
|
swc_ecma_parser = {version = "0.91.0", path = "../swc_ecma_parser", optional = true, default-features = false}
|
||||||
swc_ecma_preset_env = {version = "0.93.0", path = "../swc_ecma_preset_env", optional = true}
|
swc_ecma_preset_env = {version = "0.94.0", path = "../swc_ecma_preset_env", optional = true}
|
||||||
swc_ecma_transforms = {version = "0.120.0", path = "../swc_ecma_transforms", optional = true}
|
swc_ecma_transforms = {version = "0.120.0", path = "../swc_ecma_transforms", optional = true}
|
||||||
swc_ecma_utils = {version = "0.68.0", path = "../swc_ecma_utils", optional = true}
|
swc_ecma_utils = {version = "0.68.0", path = "../swc_ecma_utils", optional = true}
|
||||||
swc_ecma_visit = {version = "0.54.0", path = "../swc_ecma_visit", optional = true}
|
swc_ecma_visit = {version = "0.54.0", path = "../swc_ecma_visit", optional = true}
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_estree_compat"
|
name = "swc_estree_compat"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.50.0"
|
version = "0.51.0"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
@ -29,7 +29,7 @@ swc_node_comments = {version = "0.4.0", path = "../swc_node_comments/"}
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
pretty_assertions = "0.7.2"
|
pretty_assertions = "0.7.2"
|
||||||
swc = {version = "0.132.0", path = "../swc"}
|
swc = {version = "0.133.0", path = "../swc"}
|
||||||
swc_ecma_ast = {version = "0.68.0", path = "../swc_ecma_ast"}
|
swc_ecma_ast = {version = "0.68.0", path = "../swc_ecma_ast"}
|
||||||
swc_ecma_parser = {version = "0.91.0", path = "../swc_ecma_parser"}
|
swc_ecma_parser = {version = "0.91.0", path = "../swc_ecma_parser"}
|
||||||
swc_ecma_transforms = {version = "0.120.0", path = "../swc_ecma_transforms/"}
|
swc_ecma_transforms = {version = "0.120.0", path = "../swc_ecma_transforms/"}
|
||||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_webpack_ast"
|
name = "swc_webpack_ast"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.48.0"
|
version = "0.49.0"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
@ -22,7 +22,7 @@ swc_ecma_transforms_base = {version = "0.61.0", path = "../swc_ecma_transforms_b
|
|||||||
swc_ecma_utils = {version = "0.68.0", path = "../swc_ecma_utils"}
|
swc_ecma_utils = {version = "0.68.0", path = "../swc_ecma_utils"}
|
||||||
swc_ecma_visit = {version = "0.54.0", path = "../swc_ecma_visit"}
|
swc_ecma_visit = {version = "0.54.0", path = "../swc_ecma_visit"}
|
||||||
swc_estree_ast = {version = "0.7.0", path = "../swc_estree_ast"}
|
swc_estree_ast = {version = "0.7.0", path = "../swc_estree_ast"}
|
||||||
swc_estree_compat = {version = "0.50.0", path = "../swc_estree_compat"}
|
swc_estree_compat = {version = "0.51.0", path = "../swc_estree_compat"}
|
||||||
swc_timer = {version = "0.4.0", path = "../swc_timer"}
|
swc_timer = {version = "0.4.0", path = "../swc_timer"}
|
||||||
tracing = "0.1.29"
|
tracing = "0.1.29"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user