mirror of
https://github.com/swc-project/swc.git
synced 2024-11-27 13:38:33 +03:00
chore: Publish crates
This commit is contained in:
parent
efc67417a5
commit
4a38e93efc
@ -35,6 +35,9 @@
|
||||
|
||||
|
||||
|
||||
- **(config)** Add a dedicated cached regex (#3832) ([efc6741](https://github.com/swc-project/swc/commit/efc67417a5afd7813c2d09938300b5c372d1a978))
|
||||
|
||||
|
||||
- **(css/lints)** Add `font-family-no-duplicate-names` rule (#3818) ([2d273d6](https://github.com/swc-project/swc/commit/2d273d60b9dec4d9f969f0e691ba21ce4b252b7d))
|
||||
|
||||
|
||||
|
14
Cargo.lock
generated
14
Cargo.lock
generated
@ -2698,7 +2698,7 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
||||
|
||||
[[package]]
|
||||
name = "swc"
|
||||
version = "0.139.1"
|
||||
version = "0.140.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
@ -2754,7 +2754,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_bundler"
|
||||
version = "0.114.0"
|
||||
version = "0.115.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
@ -2811,7 +2811,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_cli"
|
||||
version = "0.13.0"
|
||||
version = "0.14.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"atty",
|
||||
@ -3092,7 +3092,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_minifier"
|
||||
version = "0.81.8"
|
||||
version = "0.82.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"ansi_term",
|
||||
@ -3475,7 +3475,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecmascript"
|
||||
version = "0.123.0"
|
||||
version = "0.124.0"
|
||||
dependencies = [
|
||||
"swc_ecma_ast",
|
||||
"swc_ecma_codegen",
|
||||
@ -3511,7 +3511,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_estree_compat"
|
||||
version = "0.58.0"
|
||||
version = "0.59.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
@ -3711,7 +3711,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_webpack_ast"
|
||||
version = "0.56.0"
|
||||
version = "0.57.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"rayon",
|
||||
|
@ -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.139.1"
|
||||
version = "0.140.0"
|
||||
|
||||
[lib]
|
||||
name = "swc"
|
||||
@ -54,7 +54,7 @@ swc_ecma_codegen = {version = "0.93.0", path = "../swc_ecma_codegen"}
|
||||
swc_ecma_ext_transforms = {version = "0.55.0", path = "../swc_ecma_ext_transforms"}
|
||||
swc_ecma_lints = {version = "0.19.0", path = "../swc_ecma_lints"}
|
||||
swc_ecma_loader = {version = "0.28.0", path = "../swc_ecma_loader", features = ["cache", "node", "tsc"]}
|
||||
swc_ecma_minifier = {version = "0.81.0", path = "../swc_ecma_minifier"}
|
||||
swc_ecma_minifier = {version = "0.82.0", path = "../swc_ecma_minifier"}
|
||||
swc_ecma_parser = {version = "0.91.0", path = "../swc_ecma_parser"}
|
||||
swc_ecma_preset_env = {version = "0.98.0", path = "../swc_ecma_preset_env"}
|
||||
swc_ecma_transforms = {version = "0.124.0", path = "../swc_ecma_transforms", features = [
|
||||
@ -70,7 +70,7 @@ swc_ecma_transforms_compat = {version = "0.75.0", path = "../swc_ecma_transforms
|
||||
swc_ecma_transforms_optimization = {version = "0.94.0", path = "../swc_ecma_transforms_optimization"}
|
||||
swc_ecma_utils = {version = "0.69.0", path = "../swc_ecma_utils"}
|
||||
swc_ecma_visit = {version = "0.54.0", path = "../swc_ecma_visit"}
|
||||
swc_ecmascript = {version = "0.123.0", path = "../swc_ecmascript"}
|
||||
swc_ecmascript = {version = "0.124.0", path = "../swc_ecmascript"}
|
||||
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_visit = {version = "0.3.0", path = "../swc_visit"}
|
||||
|
@ -9,7 +9,7 @@ include = ["Cargo.toml", "build.rs", "src/**/*.rs", "src/**/*.js"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_bundler"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.114.0"
|
||||
version = "0.115.0"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -61,7 +61,7 @@ path-clean = "=0.1.0"
|
||||
reqwest = {version = "0.11.4", features = ["blocking"]}
|
||||
sha-1 = "0.9"
|
||||
swc_ecma_loader = {version = "0.28.0", path = "../swc_ecma_loader", features = ["node", "cache"]}
|
||||
swc_ecma_minifier = {version = "0.81.0", path = "../swc_ecma_minifier"}
|
||||
swc_ecma_minifier = {version = "0.82.0", path = "../swc_ecma_minifier"}
|
||||
swc_ecma_transforms_react = {version = "0.86.0", path = "../swc_ecma_transforms_react"}
|
||||
swc_ecma_transforms_typescript = {version = "0.89.0", path = "../swc_ecma_transforms_typescript"}
|
||||
swc_node_base = {version = "0.5.0", path = "../swc_node_base"}
|
||||
|
@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_cli"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.13.0"
|
||||
version = "0.14.0"
|
||||
|
||||
[[bin]]
|
||||
name = "swc"
|
||||
@ -17,7 +17,7 @@ anyhow = "1.0.53"
|
||||
clap = { version = "3.1.0", features = ["derive", "wrap_help"] }
|
||||
walkdir = "2"
|
||||
rayon = "1"
|
||||
swc = { version = "0.139.0", path = "../swc" }
|
||||
swc = { version = "0.140.0", path = "../swc" }
|
||||
swc_common = { version = "0.17.5", path = "../swc_common" }
|
||||
relative-path = "1.6.1"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
|
@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/lists/*.json"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecma_minifier"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.81.8"
|
||||
version = "0.82.0"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecmascript"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.123.0"
|
||||
version = "0.124.0"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -36,7 +36,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
|
||||
swc_ecma_ast = {version = "0.68.0", path = "../swc_ecma_ast"}
|
||||
swc_ecma_codegen = {version = "0.93.0", path = "../swc_ecma_codegen", optional = true}
|
||||
swc_ecma_dep_graph = {version = "0.63.0", path = "../swc_ecma_dep_graph", optional = true}
|
||||
swc_ecma_minifier = {version = "0.81.0", path = "../swc_ecma_minifier", optional = true}
|
||||
swc_ecma_minifier = {version = "0.82.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_preset_env = {version = "0.98.0", path = "../swc_ecma_preset_env", optional = true}
|
||||
swc_ecma_transforms = {version = "0.124.0", path = "../swc_ecma_transforms", optional = true}
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_estree_compat"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.58.0"
|
||||
version = "0.59.0"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -29,7 +29,7 @@ swc_node_comments = {version = "0.4.0", path = "../swc_node_comments/"}
|
||||
|
||||
[dev-dependencies]
|
||||
pretty_assertions = "0.7.2"
|
||||
swc = {version = "0.139.0", path = "../swc"}
|
||||
swc = {version = "0.140.0", path = "../swc"}
|
||||
swc_ecma_ast = {version = "0.68.0", path = "../swc_ecma_ast"}
|
||||
swc_ecma_parser = {version = "0.91.0", path = "../swc_ecma_parser"}
|
||||
swc_ecma_transforms = {version = "0.124.0", path = "../swc_ecma_transforms/"}
|
||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_webpack_ast"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.56.0"
|
||||
version = "0.57.0"
|
||||
|
||||
# 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.63.0", path = "../swc_ecma_transforms_b
|
||||
swc_ecma_utils = {version = "0.69.0", path = "../swc_ecma_utils"}
|
||||
swc_ecma_visit = {version = "0.54.0", path = "../swc_ecma_visit"}
|
||||
swc_estree_ast = {version = "0.7.0", path = "../swc_estree_ast"}
|
||||
swc_estree_compat = {version = "0.58.0", path = "../swc_estree_compat"}
|
||||
swc_estree_compat = {version = "0.59.0", path = "../swc_estree_compat"}
|
||||
swc_timer = {version = "0.4.0", path = "../swc_timer"}
|
||||
tracing = "0.1.31"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user