chore: Publish crates

This commit is contained in:
SWC Bot 2023-10-19 17:13:59 +00:00
parent 8d7894c71f
commit a18ffc107f
22 changed files with 111 additions and 111 deletions

View File

@ -5,6 +5,9 @@
- **(css/ast)** Make `.hash()` of `Token` not recursive ([#8151](https://github.com/swc-project/swc/issues/8151)) ([8d7894c](https://github.com/swc-project/swc/commit/8d7894c71f86ef6b1813b69a15d72bb7911ed7ca))
- **(es/minifier)** Abort seq inliner if `b` can short-circuit ([#8128](https://github.com/swc-project/swc/issues/8128)) ([111de26](https://github.com/swc-project/swc/commit/111de264b0ec04ec7a693b0006050df21513b583))
@ -1745,9 +1748,6 @@ Full refactor of the "calc" simplification to be more compliant with the spec. (
- **(atoms)** Update `string-cache` for per-bucket mutex ([#6980](https://github.com/swc-project/swc/issues/6980)) ([9841f0b](https://github.com/swc-project/swc/commit/9841f0b5d14736d780c9864eb9bf7609f9ff2840))
- **(es/ast)** Shrink size of `Expr` ([#7041](https://github.com/swc-project/swc/issues/7041)) ([a9fe1d2](https://github.com/swc-project/swc/commit/a9fe1d2d2228ba89fccb2a5d91f5ac4008f09d01))

40
Cargo.lock generated
View File

@ -283,7 +283,7 @@ dependencies = [
[[package]]
name = "binding_macros"
version = "0.60.6"
version = "0.60.7"
dependencies = [
"anyhow",
"console_error_panic_hook",
@ -3668,7 +3668,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.269.6"
version = "0.269.7"
dependencies = [
"ansi_term",
"anyhow",
@ -3794,7 +3794,7 @@ dependencies = [
[[package]]
name = "swc_cli_impl"
version = "0.4.5"
version = "0.4.6"
dependencies = [
"anyhow",
"atty",
@ -3895,7 +3895,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.86.5"
version = "0.86.6"
dependencies = [
"anyhow",
"binding_macros",
@ -3946,7 +3946,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.157.0"
version = "0.157.1"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -3961,7 +3961,7 @@ dependencies = [
[[package]]
name = "swc_css_ast"
version = "0.140.0"
version = "0.140.1"
dependencies = [
"is-macro",
"rkyv",
@ -3973,7 +3973,7 @@ dependencies = [
[[package]]
name = "swc_css_codegen"
version = "0.151.0"
version = "0.151.1"
dependencies = [
"auto_impl",
"bitflags 2.3.2",
@ -4002,7 +4002,7 @@ dependencies = [
[[package]]
name = "swc_css_compat"
version = "0.27.0"
version = "0.27.1"
dependencies = [
"bitflags 2.3.2",
"once_cell",
@ -4020,7 +4020,7 @@ dependencies = [
[[package]]
name = "swc_css_lints"
version = "0.60.0"
version = "0.60.1"
dependencies = [
"auto_impl",
"parking_lot",
@ -4039,7 +4039,7 @@ dependencies = [
[[package]]
name = "swc_css_minifier"
version = "0.116.0"
version = "0.116.1"
dependencies = [
"criterion",
"serde",
@ -4056,7 +4056,7 @@ dependencies = [
[[package]]
name = "swc_css_modules"
version = "0.29.0"
version = "0.29.1"
dependencies = [
"rustc-hash",
"serde",
@ -4073,7 +4073,7 @@ dependencies = [
[[package]]
name = "swc_css_parser"
version = "0.150.0"
version = "0.150.1"
dependencies = [
"criterion",
"lexical",
@ -4089,7 +4089,7 @@ dependencies = [
[[package]]
name = "swc_css_prefixer"
version = "0.153.0"
version = "0.153.1"
dependencies = [
"once_cell",
"preset_env_base",
@ -4107,7 +4107,7 @@ dependencies = [
[[package]]
name = "swc_css_utils"
version = "0.137.0"
version = "0.137.1"
dependencies = [
"once_cell",
"serde",
@ -4120,7 +4120,7 @@ dependencies = [
[[package]]
name = "swc_css_visit"
version = "0.139.0"
version = "0.139.1"
dependencies = [
"serde",
"swc_atoms",
@ -4938,7 +4938,7 @@ dependencies = [
[[package]]
name = "swc_estree_compat"
version = "0.194.5"
version = "0.194.6"
dependencies = [
"ahash 0.8.3",
"anyhow",
@ -4986,7 +4986,7 @@ dependencies = [
[[package]]
name = "swc_html"
version = "0.134.6"
version = "0.134.7"
dependencies = [
"swc_html_ast",
"swc_html_codegen",
@ -5037,7 +5037,7 @@ dependencies = [
[[package]]
name = "swc_html_minifier"
version = "0.131.5"
version = "0.131.6"
dependencies = [
"criterion",
"once_cell",
@ -5123,7 +5123,7 @@ dependencies = [
[[package]]
name = "swc_node_bundler"
version = "0.58.6"
version = "0.58.7"
dependencies = [
"anyhow",
"dashmap",
@ -5201,7 +5201,7 @@ dependencies = [
[[package]]
name = "swc_plugin_runner"
version = "0.104.2"
version = "0.104.3"
dependencies = [
"anyhow",
"criterion",

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "binding_macros"
repository = "https://github.com/swc-project/swc.git"
version = "0.60.6"
version = "0.60.7"
[lib]
bench = false
@ -33,7 +33,7 @@ binding_wasm = [
[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "0.269.6", path = "../swc" }
swc = { optional = true, version = "0.269.7", path = "../swc" }
swc_common = { optional = true, version = "0.33.0", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.110.0", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.226.4", path = "../swc_ecma_transforms" }

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.269.6"
version = "0.269.7"
[lib]
bench = false
@ -103,7 +103,7 @@ swc_ecma_visit = { version = "0.96.0", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.0", path = "../swc_error_reporters" }
swc_node_comments = { version = "0.20.0", path = "../swc_node_comments" }
swc_plugin_proxy = { version = "0.39.0", path = "../swc_plugin_proxy", optional = true }
swc_plugin_runner = { version = "0.104.2", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_plugin_runner = { version = "0.104.3", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_timer = { version = "0.21.0", path = "../swc_timer" }
swc_visit = { version = "0.5.7", path = "../swc_visit" }

View File

@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_cli_impl"
repository = "https://github.com/swc-project/swc.git"
version = "0.4.5"
version = "0.4.6"
[features]
default = []
@ -32,7 +32,7 @@ tracing-futures = "0.2.5"
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
walkdir = "2"
swc_core = { version = "0.86.5", features = [
swc_core = { version = "0.86.6", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_core"
repository = "https://github.com/swc-project/swc.git"
version = "0.86.5"
version = "0.86.6"
[package.metadata.docs.rs]
features = [
"allocator_node",
@ -324,21 +324,21 @@ __visit = ["__ecma", "swc_ecma_visit"]
once_cell = { optional = true, version = "1.18.0" }
# swc_* dependencies
binding_macros = { optional = true, version = "0.60.6", path = "../binding_macros" }
swc = { optional = true, version = "0.269.6", path = "../swc" }
binding_macros = { optional = true, version = "0.60.7", path = "../binding_macros" }
swc = { optional = true, version = "0.269.7", path = "../swc" }
swc_atoms = { optional = true, version = "0.6.0", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "0.222.6", path = "../swc_bundler" }
swc_cached = { optional = true, version = "0.3.17", path = "../swc_cached" }
swc_common = { optional = true, version = "0.33.0", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.140.0", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.151.0", path = "../swc_css_codegen" }
swc_css_compat = { optional = true, version = "0.27.0", path = "../swc_css_compat" }
swc_css_minifier = { optional = true, version = "0.116.0", path = "../swc_css_minifier" }
swc_css_modules = { optional = true, version = "0.29.0", path = "../swc_css_modules" }
swc_css_parser = { optional = true, version = "0.150.0", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.153.0", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.137.0", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.139.0", path = "../swc_css_visit" }
swc_css_ast = { optional = true, version = "0.140.1", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.151.1", path = "../swc_css_codegen" }
swc_css_compat = { optional = true, version = "0.27.1", path = "../swc_css_compat" }
swc_css_minifier = { optional = true, version = "0.116.1", path = "../swc_css_minifier" }
swc_css_modules = { optional = true, version = "0.29.1", path = "../swc_css_modules" }
swc_css_parser = { optional = true, version = "0.150.1", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.153.1", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.137.1", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.139.1", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "0.110.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { optional = true, version = "0.146.2", path = "../swc_ecma_codegen" }
swc_ecma_loader = { optional = true, version = "0.45.0", path = "../swc_ecma_loader" }
@ -358,7 +358,7 @@ swc_ecma_usage_analyzer = { optional = true, version = "0.20.5", path =
swc_ecma_utils = { optional = true, version = "0.124.5", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "0.96.0", path = "../swc_ecma_visit" }
swc_node_base = { optional = true, version = "0.5.8", path = "../swc_node_base" }
swc_node_bundler = { optional = true, version = "0.58.6", path = "../swc_node_bundler" }
swc_node_bundler = { optional = true, version = "0.58.7", path = "../swc_node_bundler" }
swc_nodejs_common = { optional = true, version = "0.0.8", path = "../swc_nodejs_common" }
swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" }
swc_plugin_macro = { optional = true, version = "0.9.15", path = "../swc_plugin_macro" }
@ -366,7 +366,7 @@ swc_plugin_proxy = { optional = true, version = "0.39.0", path =
swc_trace_macro = { optional = true, version = "0.1.3", path = "../swc_trace_macro" }
testing = { optional = true, version = "0.35.0", path = "../testing" }
# TODO: eventually swc_plugin_runner needs to remove default features
swc_plugin_runner = { optional = true, version = "0.104.2", path = "../swc_plugin_runner", default-features = false }
swc_plugin_runner = { optional = true, version = "0.104.3", path = "../swc_plugin_runner", default-features = false }
[build-dependencies]
vergen = { version = "7.3.2", default-features = false, features = ["cargo"] }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css"
repository = "https://github.com/swc-project/swc.git"
version = "0.157.0"
version = "0.157.1"
[package.metadata.docs.rs]
all-features = true
@ -22,12 +22,12 @@ modules = ["swc_css_modules"]
prefixer = ["swc_css_prefixer"]
[dependencies]
swc_css_ast = { version = "0.140.0", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.0", path = "../swc_css_codegen" }
swc_css_compat = { version = "0.27.0", path = "../swc_css_compat", optional = true }
swc_css_minifier = { version = "0.116.0", path = "../swc_css_minifier", optional = true }
swc_css_modules = { version = "0.29.0", path = "../swc_css_modules", optional = true }
swc_css_parser = { version = "0.150.0", path = "../swc_css_parser" }
swc_css_prefixer = { version = "0.153.0", path = "../swc_css_prefixer", optional = true }
swc_css_utils = { version = "0.137.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.0", path = "../swc_css_visit" }
swc_css_ast = { version = "0.140.1", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.1", path = "../swc_css_codegen" }
swc_css_compat = { version = "0.27.1", path = "../swc_css_compat", optional = true }
swc_css_minifier = { version = "0.116.1", path = "../swc_css_minifier", optional = true }
swc_css_modules = { version = "0.29.1", path = "../swc_css_modules", optional = true }
swc_css_parser = { version = "0.150.1", path = "../swc_css_parser" }
swc_css_prefixer = { version = "0.153.1", path = "../swc_css_prefixer", optional = true }
swc_css_utils = { version = "0.137.1", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.1", path = "../swc_css_visit" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.140.0"
version = "0.140.1"
[lib]
bench = false

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_codegen"
repository = "https://github.com/swc-project/swc.git"
version = "0.151.0"
version = "0.151.1"
[lib]
bench = false
@ -20,14 +20,14 @@ serde = "1.0.127"
swc_atoms = { version = "0.6.0", path = "../swc_atoms" }
swc_common = { version = "0.33.0", path = "../swc_common" }
swc_css_ast = { version = "0.140.0", path = "../swc_css_ast" }
swc_css_ast = { version = "0.140.1", path = "../swc_css_ast" }
swc_css_codegen_macros = { version = "0.2.2", path = "../swc_css_codegen_macros" }
swc_css_utils = { version = "0.137.0", path = "../swc_css_utils" }
swc_css_utils = { version = "0.137.1", path = "../swc_css_utils" }
[dev-dependencies]
swc_common = { version = "0.33.0", path = "../swc_common", features = [
"sourcemap",
] }
swc_css_parser = { version = "0.150.0", path = "../swc_css_parser" }
swc_css_visit = { version = "0.139.0", path = "../swc_css_visit" }
swc_css_parser = { version = "0.150.1", path = "../swc_css_parser" }
swc_css_visit = { version = "0.139.1", path = "../swc_css_visit" }
testing = { version = "0.35.0", path = "../testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_css_compat"
repository = "https://github.com/swc-project/swc.git"
version = "0.27.0"
version = "0.27.1"
[lib]
bench = false
@ -20,11 +20,11 @@ serde_json = "1.0.61"
swc_atoms = { version = "0.6.0", path = "../swc_atoms" }
swc_common = { version = "0.33.0", path = "../swc_common" }
swc_css_ast = { version = "0.140.0", path = "../swc_css_ast" }
swc_css_utils = { version = "0.137.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.0", path = "../swc_css_visit" }
swc_css_ast = { version = "0.140.1", path = "../swc_css_ast" }
swc_css_utils = { version = "0.137.1", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.1", path = "../swc_css_visit" }
[dev-dependencies]
swc_css_codegen = { version = "0.151.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.0", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.151.1", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.1", path = "../swc_css_parser" }
testing = { version = "0.35.0", path = "../testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_lints"
repository = "https://github.com/swc-project/swc.git"
version = "0.60.0"
version = "0.60.1"
[lib]
bench = false
@ -22,11 +22,11 @@ thiserror = "1.0.30"
swc_atoms = { version = "0.6.0", path = "../swc_atoms" }
swc_cached = { version = "0.3.17", path = "../swc_cached" }
swc_common = { version = "0.33.0", path = "../swc_common" }
swc_css_ast = { version = "0.140.0", path = "../swc_css_ast" }
swc_css_visit = { version = "0.139.0", path = "../swc_css_visit" }
swc_css_ast = { version = "0.140.1", path = "../swc_css_ast" }
swc_css_visit = { version = "0.139.1", path = "../swc_css_visit" }
[dev-dependencies]
serde_json = "1.0.79"
swc_css_parser = { version = "0.150.0", path = "../swc_css_parser" }
swc_css_parser = { version = "0.150.1", path = "../swc_css_parser" }
testing = { version = "0.35.0", path = "../testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.116.0"
version = "0.116.1"
[lib]
bench = false
@ -17,15 +17,15 @@ serde = "1.0.118"
swc_atoms = { version = "0.6.0", path = "../swc_atoms" }
swc_common = { version = "0.33.0", path = "../swc_common" }
swc_css_ast = { version = "0.140.0", path = "../swc_css_ast" }
swc_css_utils = { version = "0.137.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.0", path = "../swc_css_visit" }
swc_css_ast = { version = "0.140.1", path = "../swc_css_ast" }
swc_css_utils = { version = "0.137.1", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.1", path = "../swc_css_visit" }
[dev-dependencies]
criterion = "0.5"
swc_css_codegen = { version = "0.151.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.0", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.151.1", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.1", path = "../swc_css_parser" }
swc_node_base = { version = "0.5.8", path = "../swc_node_base" }
testing = { version = "0.35.0", path = "../testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_modules"
repository = "https://github.com/swc-project/swc.git"
version = "0.29.0"
version = "0.29.1"
[lib]
bench = false
@ -20,13 +20,13 @@ serde = { version = "1", features = ["derive"] }
swc_atoms = { version = "0.6.0", path = "../swc_atoms" }
swc_common = { version = "0.33.0", path = "../swc_common" }
swc_css_ast = { version = "0.140.0", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.0", path = "../swc_css_parser" }
swc_css_visit = { version = "0.139.0", path = "../swc_css_visit" }
swc_css_ast = { version = "0.140.1", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.1", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.1", path = "../swc_css_parser" }
swc_css_visit = { version = "0.139.1", path = "../swc_css_visit" }
[dev-dependencies]
serde_json = "1"
swc_css_compat = { version = "0.27.0", path = "../swc_css_compat" }
swc_css_compat = { version = "0.27.1", path = "../swc_css_compat" }
testing = { version = "0.35.0", path = "../testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_parser"
repository = "https://github.com/swc-project/swc.git"
version = "0.150.0"
version = "0.150.1"
[lib]
bench = false
@ -21,16 +21,16 @@ serde = "1.0.127"
swc_atoms = { version = "0.6.0", path = "../swc_atoms" }
swc_common = { version = "0.33.0", path = "../swc_common" }
swc_css_ast = { version = "0.140.0", path = "../swc_css_ast" }
swc_css_ast = { version = "0.140.1", path = "../swc_css_ast" }
[dev-dependencies]
criterion = "0.5"
serde_json = "1.0.66"
swc_css_ast = { version = "0.140.0", path = "../swc_css_ast", features = [
swc_css_ast = { version = "0.140.1", path = "../swc_css_ast", features = [
"serde-impl",
] }
swc_css_visit = { version = "0.139.0", path = "../swc_css_visit" }
swc_css_visit = { version = "0.139.1", path = "../swc_css_visit" }
swc_node_base = { version = "0.5.8", path = "../swc_node_base" }
testing = { version = "0.35.0", path = "../testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_css_prefixer"
repository = "https://github.com/swc-project/swc.git"
version = "0.153.0"
version = "0.153.1"
[lib]
bench = false
@ -20,11 +20,11 @@ serde_json = "1.0.61"
preset_env_base = { version = "0.4.5", path = "../preset_env_base" }
swc_atoms = { version = "0.6.0", path = "../swc_atoms" }
swc_common = { version = "0.33.0", path = "../swc_common" }
swc_css_ast = { version = "0.140.0", path = "../swc_css_ast" }
swc_css_utils = { version = "0.137.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.0", path = "../swc_css_visit" }
swc_css_ast = { version = "0.140.1", path = "../swc_css_ast" }
swc_css_utils = { version = "0.137.1", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.1", path = "../swc_css_visit" }
[dev-dependencies]
swc_css_codegen = { version = "0.151.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.0", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.151.1", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.1", path = "../swc_css_parser" }
testing = { version = "0.35.0", path = "../testing" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json"]
license = "Apache-2.0"
name = "swc_css_utils"
repository = "https://github.com/swc-project/swc.git"
version = "0.137.0"
version = "0.137.1"
[lib]
bench = false
@ -19,5 +19,5 @@ serde_json = "1.0.61"
swc_atoms = { version = "0.6.0", path = "../swc_atoms" }
swc_common = { version = "0.33.0", path = "../swc_common" }
swc_css_ast = { version = "0.140.0", path = "../swc_css_ast" }
swc_css_visit = { version = "0.139.0", path = "../swc_css_visit" }
swc_css_ast = { version = "0.140.1", path = "../swc_css_ast" }
swc_css_visit = { version = "0.139.1", path = "../swc_css_visit" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css_visit"
repository = "https://github.com/swc-project/swc.git"
version = "0.139.0"
version = "0.139.1"
[package.metadata.docs.rs]
all-features = true
@ -24,5 +24,5 @@ serde = { version = "1", optional = true }
swc_atoms = { version = "0.6.0", path = "../swc_atoms" }
swc_common = { version = "0.33.0", path = "../swc_common" }
swc_css_ast = { version = "0.140.0", path = "../swc_css_ast" }
swc_css_ast = { version = "0.140.1", path = "../swc_css_ast" }
swc_visit = { version = "0.5.7", path = "../swc_visit" }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_estree_compat"
repository = "https://github.com/swc-project/swc.git"
version = "0.194.5"
version = "0.194.6"
[package.metadata.docs.rs]
all-features = true
@ -40,7 +40,7 @@ swc_node_comments = { version = "0.20.0", path = "../swc_node_comments/" }
criterion = "0.5"
pretty_assertions = "1.3"
swc = { version = "0.269.6", path = "../swc" }
swc = { version = "0.269.7", path = "../swc" }
swc_ecma_ast = { version = "0.110.0", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.141.2", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "0.226.4", path = "../swc_ecma_transforms/" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_html"
repository = "https://github.com/swc-project/swc.git"
version = "0.134.6"
version = "0.134.7"
[package.metadata.docs.rs]
all-features = true
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies]
swc_html_ast = {version = "0.33.0", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.42.0", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.131.5", path = "../swc_html_minifier", optional = true}
swc_html_minifier = {version = "0.131.6", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.39.0", path = "../swc_html_parser"}
swc_html_visit = {version = "0.33.0", path = "../swc_html_visit"}

View File

@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_html_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.131.5"
version = "0.131.6"
[lib]
bench = false
@ -23,10 +23,10 @@ serde_json = "1.0.61"
swc_atoms = { version = "0.6.0", path = "../swc_atoms" }
swc_cached = { version = "0.3.17", path = "../swc_cached" }
swc_common = { version = "0.33.0", path = "../swc_common" }
swc_css_ast = { version = "0.140.0", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.0", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.116.0", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.150.0", path = "../swc_css_parser" }
swc_css_ast = { version = "0.140.1", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.1", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.116.1", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.150.1", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.110.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.146.2", path = "../swc_ecma_codegen", features = [
"serde-impl",

View File

@ -7,7 +7,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_node_bundler"
repository = "https://github.com/swc-project/swc.git"
version = "0.58.6"
version = "0.58.7"
[lib]
bench = false
@ -29,7 +29,7 @@ serde_json = "1"
tracing = "0.1.37"
string_enum = { version = "0.4.1", path = "../string_enum" }
swc = { version = "0.269.6", path = "../swc" }
swc = { version = "0.269.7", path = "../swc" }
swc_atoms = { version = "0.6.0", path = "../swc_atoms" }
swc_bundler = { version = "0.222.6", path = "../swc_bundler", features = [
"concurrent",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_plugin_runner"
repository = "https://github.com/swc-project/swc.git"
version = "0.104.2"
version = "0.104.3"
[lib]
bench = false
@ -64,7 +64,7 @@ wasmer-wasix = { version = "0.9.0", default-features = false }
swc_common = { version = "0.33.0", path = "../swc_common", features = [
"concurrent",
] }
swc_css_ast = { version = "0.140.0", path = "../swc_css_ast", optional = true }
swc_css_ast = { version = "0.140.1", path = "../swc_css_ast", optional = true }
swc_ecma_ast = { version = "0.110.0", path = "../swc_ecma_ast", optional = true }
swc_plugin_proxy = { version = "0.39.0", path = "../swc_plugin_proxy" }
@ -76,10 +76,10 @@ wasmer-compiler-cranelift = { version = "4.0.0", default-features = false }
criterion = "0.5"
swc_atoms = { version = "0.6.0", path = '../swc_atoms' }
swc_css_ast = { version = "0.140.0", path = "../swc_css_ast", features = [
swc_css_ast = { version = "0.140.1", path = "../swc_css_ast", features = [
"rkyv-impl",
] }
swc_css_parser = { version = "0.150.0", path = "../swc_css_parser" }
swc_css_parser = { version = "0.150.1", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.110.0", path = "../swc_ecma_ast", features = [
"rkyv-impl",
] }