chore: Publish crates

This commit is contained in:
SWC Bot 2024-01-03 20:42:53 +00:00
parent 85be8a4de1
commit f00ff72b95
22 changed files with 114 additions and 111 deletions

View File

@ -28,6 +28,12 @@
- **(html/parser)** Allow self-closing `/>` on non-void HTML elements via a flag ([#8460](https://github.com/swc-project/swc/issues/8460)) ([566063d](https://github.com/swc-project/swc/commit/566063dca5fe73834cdf5e0acf7c7f344a9806a5))
### Refactor
- **(css/parser)** Remove value normalization ([#8434](https://github.com/swc-project/swc/issues/8434)) ([85be8a4](https://github.com/swc-project/swc/commit/85be8a4de1d8407421aadeb5769d414b9938f693))
### Testing
@ -1520,9 +1526,6 @@
- **(es)** Init filesystem cache only if plugin exists ([#7436](https://github.com/swc-project/swc/issues/7436)) ([786cf3a](https://github.com/swc-project/swc/commit/786cf3a10ffe5e2990c5473062ea42771b769124))
- **(es)** Ignore input sourcemap error ([#7446](https://github.com/swc-project/swc/issues/7446)) ([0c92e53](https://github.com/swc-project/swc/commit/0c92e534a5e3ccc74077ac03c473ad2c12fd5349))

40
Cargo.lock generated
View File

@ -307,7 +307,7 @@ dependencies = [
[[package]]
name = "binding_macros"
version = "0.61.14"
version = "0.61.15"
dependencies = [
"anyhow",
"console_error_panic_hook",
@ -3785,7 +3785,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.270.15"
version = "0.270.16"
dependencies = [
"ansi_term",
"anyhow",
@ -3909,7 +3909,7 @@ dependencies = [
[[package]]
name = "swc_cli_impl"
version = "0.5.15"
version = "0.5.16"
dependencies = [
"anyhow",
"assert_cmd",
@ -4010,7 +4010,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.87.15"
version = "0.87.16"
dependencies = [
"anyhow",
"binding_macros",
@ -4061,7 +4061,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.157.28"
version = "0.157.29"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -4076,7 +4076,7 @@ dependencies = [
[[package]]
name = "swc_css_ast"
version = "0.140.13"
version = "0.140.14"
dependencies = [
"is-macro",
"rkyv",
@ -4088,7 +4088,7 @@ dependencies = [
[[package]]
name = "swc_css_codegen"
version = "0.151.22"
version = "0.151.23"
dependencies = [
"auto_impl",
"bitflags 2.3.2",
@ -4116,7 +4116,7 @@ dependencies = [
[[package]]
name = "swc_css_compat"
version = "0.27.23"
version = "0.27.24"
dependencies = [
"bitflags 2.3.2",
"once_cell",
@ -4134,7 +4134,7 @@ dependencies = [
[[package]]
name = "swc_css_lints"
version = "0.60.22"
version = "0.60.23"
dependencies = [
"auto_impl",
"parking_lot",
@ -4153,7 +4153,7 @@ dependencies = [
[[package]]
name = "swc_css_minifier"
version = "0.116.23"
version = "0.116.24"
dependencies = [
"criterion",
"serde",
@ -4170,7 +4170,7 @@ dependencies = [
[[package]]
name = "swc_css_modules"
version = "0.29.25"
version = "0.29.26"
dependencies = [
"rustc-hash",
"serde",
@ -4187,7 +4187,7 @@ dependencies = [
[[package]]
name = "swc_css_parser"
version = "0.150.21"
version = "0.150.22"
dependencies = [
"criterion",
"lexical",
@ -4203,7 +4203,7 @@ dependencies = [
[[package]]
name = "swc_css_prefixer"
version = "0.153.24"
version = "0.153.25"
dependencies = [
"once_cell",
"preset_env_base",
@ -4221,7 +4221,7 @@ dependencies = [
[[package]]
name = "swc_css_utils"
version = "0.137.13"
version = "0.137.14"
dependencies = [
"once_cell",
"serde",
@ -4234,7 +4234,7 @@ dependencies = [
[[package]]
name = "swc_css_visit"
version = "0.139.13"
version = "0.139.14"
dependencies = [
"serde",
"swc_atoms",
@ -5038,7 +5038,7 @@ dependencies = [
[[package]]
name = "swc_estree_compat"
version = "0.195.15"
version = "0.195.16"
dependencies = [
"ahash 0.8.5",
"anyhow",
@ -5086,7 +5086,7 @@ dependencies = [
[[package]]
name = "swc_html"
version = "0.135.15"
version = "0.135.16"
dependencies = [
"swc_html_ast",
"swc_html_codegen",
@ -5136,7 +5136,7 @@ dependencies = [
[[package]]
name = "swc_html_minifier"
version = "0.132.15"
version = "0.132.16"
dependencies = [
"criterion",
"once_cell",
@ -5221,7 +5221,7 @@ dependencies = [
[[package]]
name = "swc_node_bundler"
version = "0.59.14"
version = "0.59.15"
dependencies = [
"anyhow",
"dashmap",
@ -5299,7 +5299,7 @@ dependencies = [
[[package]]
name = "swc_plugin_runner"
version = "0.104.38"
version = "0.104.39"
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.61.14"
version = "0.61.15"
[lib]
bench = false
@ -33,7 +33,7 @@ binding_wasm = [
[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "0.270.15", path = "../swc" }
swc = { optional = true, version = "0.270.16", path = "../swc" }
swc_common = { optional = true, version = "0.33.12", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.110.15", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.227.12", 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.270.15"
version = "0.270.16"
[lib]
bench = false
@ -103,7 +103,7 @@ swc_ecma_visit = { version = "0.96.15", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.12", path = "../swc_error_reporters" }
swc_node_comments = { version = "0.20.12", path = "../swc_node_comments" }
swc_plugin_proxy = { version = "0.39.15", path = "../swc_plugin_proxy", optional = true }
swc_plugin_runner = { version = "0.104.38", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_plugin_runner = { version = "0.104.39", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_timer = { version = "0.21.14", path = "../swc_timer" }
swc_visit = { version = "0.5.8", 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.5.15"
version = "0.5.16"
[[bin]]
name = "swc"
@ -40,7 +40,7 @@ tracing-futures = "0.2.5"
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
walkdir = "2"
swc_core = { version = "0.87.15", features = [
swc_core = { version = "0.87.16", 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.87.15"
version = "0.87.16"
[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.61.14", path = "../binding_macros" }
swc = { optional = true, version = "0.270.15", path = "../swc" }
binding_macros = { optional = true, version = "0.61.15", path = "../binding_macros" }
swc = { optional = true, version = "0.270.16", path = "../swc" }
swc_atoms = { optional = true, version = "0.6.5", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "0.223.13", path = "../swc_bundler" }
swc_cached = { optional = true, version = "0.3.18", path = "../swc_cached" }
swc_common = { optional = true, version = "0.33.12", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.140.13", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.151.22", path = "../swc_css_codegen" }
swc_css_compat = { optional = true, version = "0.27.23", path = "../swc_css_compat" }
swc_css_minifier = { optional = true, version = "0.116.23", path = "../swc_css_minifier" }
swc_css_modules = { optional = true, version = "0.29.25", path = "../swc_css_modules" }
swc_css_parser = { optional = true, version = "0.150.21", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.153.24", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.137.13", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.139.13", path = "../swc_css_visit" }
swc_css_ast = { optional = true, version = "0.140.14", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.151.23", path = "../swc_css_codegen" }
swc_css_compat = { optional = true, version = "0.27.24", path = "../swc_css_compat" }
swc_css_minifier = { optional = true, version = "0.116.24", path = "../swc_css_minifier" }
swc_css_modules = { optional = true, version = "0.29.26", path = "../swc_css_modules" }
swc_css_parser = { optional = true, version = "0.150.22", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.153.25", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.137.14", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.139.14", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "0.110.15", path = "../swc_ecma_ast" }
swc_ecma_codegen = { optional = true, version = "0.146.51", path = "../swc_ecma_codegen" }
swc_ecma_loader = { optional = true, version = "0.45.13", path = "../swc_ecma_loader" }
@ -358,7 +358,7 @@ swc_ecma_usage_analyzer = { optional = true, version = "0.21.2", path =
swc_ecma_utils = { optional = true, version = "0.125.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "0.96.15", path = "../swc_ecma_visit" }
swc_malloc = { optional = true, version = "0.5.10", path = "../swc_malloc" }
swc_node_bundler = { optional = true, version = "0.59.14", path = "../swc_node_bundler" }
swc_node_bundler = { optional = true, version = "0.59.15", 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.15", path
swc_trace_macro = { optional = true, version = "0.1.3", path = "../swc_trace_macro" }
testing = { optional = true, version = "0.35.14", path = "../testing" }
# TODO: eventually swc_plugin_runner needs to remove default features
swc_plugin_runner = { optional = true, version = "0.104.38", path = "../swc_plugin_runner", default-features = false }
swc_plugin_runner = { optional = true, version = "0.104.39", path = "../swc_plugin_runner", default-features = false }
[build-dependencies]
vergen = { version = "8.0.0", 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.28"
version = "0.157.29"
[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.13", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.22", path = "../swc_css_codegen" }
swc_css_compat = { version = "0.27.23", path = "../swc_css_compat", optional = true }
swc_css_minifier = { version = "0.116.23", path = "../swc_css_minifier", optional = true }
swc_css_modules = { version = "0.29.25", path = "../swc_css_modules", optional = true }
swc_css_parser = { version = "0.150.21", path = "../swc_css_parser" }
swc_css_prefixer = { version = "0.153.24", path = "../swc_css_prefixer", optional = true }
swc_css_utils = { version = "0.137.13", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.13", path = "../swc_css_visit" }
swc_css_ast = { version = "0.140.14", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.23", path = "../swc_css_codegen" }
swc_css_compat = { version = "0.27.24", path = "../swc_css_compat", optional = true }
swc_css_minifier = { version = "0.116.24", path = "../swc_css_minifier", optional = true }
swc_css_modules = { version = "0.29.26", path = "../swc_css_modules", optional = true }
swc_css_parser = { version = "0.150.22", path = "../swc_css_parser" }
swc_css_prefixer = { version = "0.153.25", path = "../swc_css_prefixer", optional = true }
swc_css_utils = { version = "0.137.14", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.14", 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.13"
version = "0.140.14"
[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.22"
version = "0.151.23"
[lib]
bench = false
@ -20,14 +20,14 @@ serde = "1.0.127"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.12", path = "../swc_common" }
swc_css_ast = { version = "0.140.13", path = "../swc_css_ast" }
swc_css_ast = { version = "0.140.14", path = "../swc_css_ast" }
swc_css_codegen_macros = { version = "0.2.3", path = "../swc_css_codegen_macros" }
swc_css_utils = { version = "0.137.13", path = "../swc_css_utils" }
swc_css_utils = { version = "0.137.14", path = "../swc_css_utils" }
[dev-dependencies]
swc_common = { version = "0.33.12", path = "../swc_common", features = [
"sourcemap",
] }
swc_css_parser = { version = "0.150.21", path = "../swc_css_parser" }
swc_css_visit = { version = "0.139.13", path = "../swc_css_visit" }
swc_css_parser = { version = "0.150.22", path = "../swc_css_parser" }
swc_css_visit = { version = "0.139.14", path = "../swc_css_visit" }
testing = { version = "0.35.14", 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.23"
version = "0.27.24"
[lib]
bench = false
@ -20,11 +20,11 @@ serde_json = "1.0.61"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.12", path = "../swc_common" }
swc_css_ast = { version = "0.140.13", path = "../swc_css_ast" }
swc_css_utils = { version = "0.137.13", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.13", path = "../swc_css_visit" }
swc_css_ast = { version = "0.140.14", path = "../swc_css_ast" }
swc_css_utils = { version = "0.137.14", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.14", path = "../swc_css_visit" }
[dev-dependencies]
swc_css_codegen = { version = "0.151.22", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.21", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.151.23", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.22", path = "../swc_css_parser" }
testing = { version = "0.35.14", 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.22"
version = "0.60.23"
[lib]
bench = false
@ -22,11 +22,11 @@ thiserror = "1.0.30"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_cached = { version = "0.3.18", path = "../swc_cached" }
swc_common = { version = "0.33.12", path = "../swc_common" }
swc_css_ast = { version = "0.140.13", path = "../swc_css_ast" }
swc_css_visit = { version = "0.139.13", path = "../swc_css_visit" }
swc_css_ast = { version = "0.140.14", path = "../swc_css_ast" }
swc_css_visit = { version = "0.139.14", path = "../swc_css_visit" }
[dev-dependencies]
serde_json = "1.0.79"
swc_css_parser = { version = "0.150.21", path = "../swc_css_parser" }
swc_css_parser = { version = "0.150.22", path = "../swc_css_parser" }
testing = { version = "0.35.14", 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.23"
version = "0.116.24"
[lib]
bench = false
@ -17,15 +17,15 @@ serde = "1.0.118"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.12", path = "../swc_common" }
swc_css_ast = { version = "0.140.13", path = "../swc_css_ast" }
swc_css_utils = { version = "0.137.13", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.13", path = "../swc_css_visit" }
swc_css_ast = { version = "0.140.14", path = "../swc_css_ast" }
swc_css_utils = { version = "0.137.14", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.14", path = "../swc_css_visit" }
[dev-dependencies]
criterion = "0.5"
swc_css_codegen = { version = "0.151.22", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.21", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.151.23", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.22", path = "../swc_css_parser" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.14", 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.25"
version = "0.29.26"
[lib]
bench = false
@ -20,13 +20,13 @@ serde = { version = "1", features = ["derive"] }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.12", path = "../swc_common" }
swc_css_ast = { version = "0.140.13", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.22", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.21", path = "../swc_css_parser" }
swc_css_visit = { version = "0.139.13", path = "../swc_css_visit" }
swc_css_ast = { version = "0.140.14", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.23", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.22", path = "../swc_css_parser" }
swc_css_visit = { version = "0.139.14", path = "../swc_css_visit" }
[dev-dependencies]
serde_json = "1"
swc_css_compat = { version = "0.27.23", path = "../swc_css_compat" }
swc_css_compat = { version = "0.27.24", path = "../swc_css_compat" }
testing = { version = "0.35.14", 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.21"
version = "0.150.22"
[lib]
bench = false
@ -21,16 +21,16 @@ serde = "1.0.127"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.12", path = "../swc_common" }
swc_css_ast = { version = "0.140.13", path = "../swc_css_ast" }
swc_css_ast = { version = "0.140.14", path = "../swc_css_ast" }
[dev-dependencies]
criterion = "0.5"
serde_json = "1.0.66"
swc_css_ast = { version = "0.140.13", path = "../swc_css_ast", features = [
swc_css_ast = { version = "0.140.14", path = "../swc_css_ast", features = [
"serde-impl",
] }
swc_css_visit = { version = "0.139.13", path = "../swc_css_visit" }
swc_css_visit = { version = "0.139.14", path = "../swc_css_visit" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.14", 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.24"
version = "0.153.25"
[lib]
bench = false
@ -20,11 +20,11 @@ serde_json = "1.0.61"
preset_env_base = { version = "0.4.9", path = "../preset_env_base" }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.12", path = "../swc_common" }
swc_css_ast = { version = "0.140.13", path = "../swc_css_ast" }
swc_css_utils = { version = "0.137.13", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.13", path = "../swc_css_visit" }
swc_css_ast = { version = "0.140.14", path = "../swc_css_ast" }
swc_css_utils = { version = "0.137.14", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.14", path = "../swc_css_visit" }
[dev-dependencies]
swc_css_codegen = { version = "0.151.22", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.21", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.151.23", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.22", path = "../swc_css_parser" }
testing = { version = "0.35.14", 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.13"
version = "0.137.14"
[lib]
bench = false
@ -19,5 +19,5 @@ serde_json = "1.0.61"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.12", path = "../swc_common" }
swc_css_ast = { version = "0.140.13", path = "../swc_css_ast" }
swc_css_visit = { version = "0.139.13", path = "../swc_css_visit" }
swc_css_ast = { version = "0.140.14", path = "../swc_css_ast" }
swc_css_visit = { version = "0.139.14", 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.13"
version = "0.139.14"
[package.metadata.docs.rs]
all-features = true
@ -24,5 +24,5 @@ serde = { version = "1", optional = true }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.12", path = "../swc_common" }
swc_css_ast = { version = "0.140.13", path = "../swc_css_ast" }
swc_css_ast = { version = "0.140.14", path = "../swc_css_ast" }
swc_visit = { version = "0.5.8", 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.195.15"
version = "0.195.16"
[package.metadata.docs.rs]
all-features = true
@ -40,7 +40,7 @@ swc_node_comments = { version = "0.20.12", path = "../swc_node_comments/" }
criterion = "0.5"
pretty_assertions = "1.3"
swc = { version = "0.270.15", path = "../swc" }
swc = { version = "0.270.16", path = "../swc" }
swc_ecma_ast = { version = "0.110.15", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.141.34", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "0.227.12", 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.135.15"
version = "0.135.16"
[package.metadata.docs.rs]
all-features = true
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies]
swc_html_ast = {version = "0.33.12", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.42.17", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.132.15", path = "../swc_html_minifier", optional = true}
swc_html_minifier = {version = "0.132.16", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.39.17", path = "../swc_html_parser"}
swc_html_visit = {version = "0.33.12", 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.132.15"
version = "0.132.16"
[lib]
bench = false
@ -23,10 +23,10 @@ serde_json = "1.0.61"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_cached = { version = "0.3.18", path = "../swc_cached" }
swc_common = { version = "0.33.12", path = "../swc_common" }
swc_css_ast = { version = "0.140.13", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.22", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.116.23", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.150.21", path = "../swc_css_parser" }
swc_css_ast = { version = "0.140.14", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.23", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.116.24", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.150.22", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.110.15", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.146.51", 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.59.14"
version = "0.59.15"
[lib]
bench = false
@ -29,7 +29,7 @@ serde_json = "1"
tracing = "0.1.37"
string_enum = { version = "0.4.2", path = "../string_enum" }
swc = { version = "0.270.15", path = "../swc" }
swc = { version = "0.270.16", path = "../swc" }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_bundler = { version = "0.223.13", 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.38"
version = "0.104.39"
[lib]
bench = false
@ -64,7 +64,7 @@ wasmer-wasix = { version = "0.9.0", default-features = false }
swc_common = { version = "0.33.12", path = "../swc_common", features = [
"concurrent",
] }
swc_css_ast = { version = "0.140.13", path = "../swc_css_ast", optional = true }
swc_css_ast = { version = "0.140.14", path = "../swc_css_ast", optional = true }
swc_ecma_ast = { version = "0.110.15", path = "../swc_ecma_ast", optional = true }
swc_plugin_proxy = { version = "0.39.15", 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.5", path = '../swc_atoms' }
swc_css_ast = { version = "0.140.13", path = "../swc_css_ast", features = [
swc_css_ast = { version = "0.140.14", path = "../swc_css_ast", features = [
"rkyv-impl",
] }
swc_css_parser = { version = "0.150.21", path = "../swc_css_parser" }
swc_css_parser = { version = "0.150.22", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.110.15", path = "../swc_ecma_ast", features = [
"rkyv-impl",
] }