chore: Publish crates

This commit is contained in:
SWC Bot 2023-11-09 21:53:21 +00:00
parent 302954e4e5
commit 665d679c69
19 changed files with 77 additions and 71 deletions

View File

@ -7,6 +7,12 @@
- **(es/minifier)** Use `cooked` while converting tpls into strings ([#8248](https://github.com/swc-project/swc/issues/8248)) ([be748f0](https://github.com/swc-project/swc/commit/be748f0f33bda76a1ae4a4acd586213adfe7b2aa))
### Performance
- **(css/parser)** Use `AtomStoreCell` ([#8247](https://github.com/swc-project/swc/issues/8247)) ([302954e](https://github.com/swc-project/swc/commit/302954e4e54b7190c88667534c2dd6105f744f90))
## [1.3.97] - 2023-11-09
### Bug Fixes

34
Cargo.lock generated
View File

@ -284,7 +284,7 @@ dependencies = [
[[package]]
name = "binding_macros"
version = "0.60.47"
version = "0.60.48"
dependencies = [
"anyhow",
"console_error_panic_hook",
@ -3721,7 +3721,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.269.41"
version = "0.269.42"
dependencies = [
"ansi_term",
"anyhow",
@ -3845,7 +3845,7 @@ dependencies = [
[[package]]
name = "swc_cli_impl"
version = "0.4.46"
version = "0.4.47"
dependencies = [
"anyhow",
"atty",
@ -3946,7 +3946,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.86.47"
version = "0.86.48"
dependencies = [
"anyhow",
"binding_macros",
@ -3997,7 +3997,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.157.16"
version = "0.157.17"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -4024,7 +4024,7 @@ dependencies = [
[[package]]
name = "swc_css_codegen"
version = "0.151.13"
version = "0.151.14"
dependencies = [
"auto_impl",
"bitflags 2.3.2",
@ -4053,7 +4053,7 @@ dependencies = [
[[package]]
name = "swc_css_compat"
version = "0.27.13"
version = "0.27.14"
dependencies = [
"bitflags 2.3.2",
"once_cell",
@ -4071,7 +4071,7 @@ dependencies = [
[[package]]
name = "swc_css_lints"
version = "0.60.14"
version = "0.60.15"
dependencies = [
"auto_impl",
"parking_lot",
@ -4090,7 +4090,7 @@ dependencies = [
[[package]]
name = "swc_css_minifier"
version = "0.116.13"
version = "0.116.14"
dependencies = [
"criterion",
"serde",
@ -4107,7 +4107,7 @@ dependencies = [
[[package]]
name = "swc_css_modules"
version = "0.29.14"
version = "0.29.15"
dependencies = [
"rustc-hash",
"serde",
@ -4124,7 +4124,7 @@ dependencies = [
[[package]]
name = "swc_css_parser"
version = "0.150.13"
version = "0.150.14"
dependencies = [
"criterion",
"lexical",
@ -4140,7 +4140,7 @@ dependencies = [
[[package]]
name = "swc_css_prefixer"
version = "0.153.15"
version = "0.153.16"
dependencies = [
"once_cell",
"preset_env_base",
@ -4993,7 +4993,7 @@ dependencies = [
[[package]]
name = "swc_estree_compat"
version = "0.194.45"
version = "0.194.46"
dependencies = [
"ahash 0.8.5",
"anyhow",
@ -5041,7 +5041,7 @@ dependencies = [
[[package]]
name = "swc_html"
version = "0.134.42"
version = "0.134.43"
dependencies = [
"swc_html_ast",
"swc_html_codegen",
@ -5092,7 +5092,7 @@ dependencies = [
[[package]]
name = "swc_html_minifier"
version = "0.131.41"
version = "0.131.42"
dependencies = [
"criterion",
"once_cell",
@ -5178,7 +5178,7 @@ dependencies = [
[[package]]
name = "swc_node_bundler"
version = "0.58.46"
version = "0.58.47"
dependencies = [
"anyhow",
"dashmap",
@ -5256,7 +5256,7 @@ dependencies = [
[[package]]
name = "swc_plugin_runner"
version = "0.104.19"
version = "0.104.20"
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.47"
version = "0.60.48"
[lib]
bench = false
@ -33,7 +33,7 @@ binding_wasm = [
[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "0.269.41", path = "../swc" }
swc = { optional = true, version = "0.269.42", path = "../swc" }
swc_common = { optional = true, version = "0.33.8", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.110.9", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.226.33", 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.41"
version = "0.269.42"
[lib]
bench = false
@ -103,7 +103,7 @@ swc_ecma_visit = { version = "0.96.9", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.8", path = "../swc_error_reporters" }
swc_node_comments = { version = "0.20.8", path = "../swc_node_comments" }
swc_plugin_proxy = { version = "0.39.9", path = "../swc_plugin_proxy", optional = true }
swc_plugin_runner = { version = "0.104.19", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_plugin_runner = { version = "0.104.20", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_timer = { version = "0.21.10", 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.46"
version = "0.4.47"
[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.47", features = [
swc_core = { version = "0.86.48", 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.47"
version = "0.86.48"
[package.metadata.docs.rs]
features = [
"allocator_node",
@ -324,19 +324,19 @@ __visit = ["__ecma", "swc_ecma_visit"]
once_cell = { optional = true, version = "1.18.0" }
# swc_* dependencies
binding_macros = { optional = true, version = "0.60.47", path = "../binding_macros" }
swc = { optional = true, version = "0.269.41", path = "../swc" }
binding_macros = { optional = true, version = "0.60.48", path = "../binding_macros" }
swc = { optional = true, version = "0.269.42", path = "../swc" }
swc_atoms = { optional = true, version = "0.6.4", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "0.222.36", path = "../swc_bundler" }
swc_cached = { optional = true, version = "0.3.18", path = "../swc_cached" }
swc_common = { optional = true, version = "0.33.8", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.140.9", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.151.13", path = "../swc_css_codegen" }
swc_css_compat = { optional = true, version = "0.27.13", path = "../swc_css_compat" }
swc_css_minifier = { optional = true, version = "0.116.13", path = "../swc_css_minifier" }
swc_css_modules = { optional = true, version = "0.29.14", path = "../swc_css_modules" }
swc_css_parser = { optional = true, version = "0.150.13", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.153.15", path = "../swc_css_prefixer" }
swc_css_codegen = { optional = true, version = "0.151.14", path = "../swc_css_codegen" }
swc_css_compat = { optional = true, version = "0.27.14", path = "../swc_css_compat" }
swc_css_minifier = { optional = true, version = "0.116.14", path = "../swc_css_minifier" }
swc_css_modules = { optional = true, version = "0.29.15", path = "../swc_css_modules" }
swc_css_parser = { optional = true, version = "0.150.14", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.153.16", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.137.9", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.139.9", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "0.110.9", path = "../swc_ecma_ast" }
@ -358,7 +358,7 @@ swc_ecma_usage_analyzer = { optional = true, version = "0.20.24", path
swc_ecma_utils = { optional = true, version = "0.124.23", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "0.96.9", path = "../swc_ecma_visit" }
swc_node_base = { optional = true, version = "0.5.9", path = "../swc_node_base" }
swc_node_bundler = { optional = true, version = "0.58.46", path = "../swc_node_bundler" }
swc_node_bundler = { optional = true, version = "0.58.47", 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.9", path =
swc_trace_macro = { optional = true, version = "0.1.3", path = "../swc_trace_macro" }
testing = { optional = true, version = "0.35.10", path = "../testing" }
# TODO: eventually swc_plugin_runner needs to remove default features
swc_plugin_runner = { optional = true, version = "0.104.19", path = "../swc_plugin_runner", default-features = false }
swc_plugin_runner = { optional = true, version = "0.104.20", 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.16"
version = "0.157.17"
[package.metadata.docs.rs]
all-features = true
@ -23,11 +23,11 @@ prefixer = ["swc_css_prefixer"]
[dependencies]
swc_css_ast = { version = "0.140.9", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.13", path = "../swc_css_codegen" }
swc_css_compat = { version = "0.27.13", path = "../swc_css_compat", optional = true }
swc_css_minifier = { version = "0.116.13", path = "../swc_css_minifier", optional = true }
swc_css_modules = { version = "0.29.14", path = "../swc_css_modules", optional = true }
swc_css_parser = { version = "0.150.13", path = "../swc_css_parser" }
swc_css_prefixer = { version = "0.153.15", path = "../swc_css_prefixer", optional = true }
swc_css_codegen = { version = "0.151.14", path = "../swc_css_codegen" }
swc_css_compat = { version = "0.27.14", path = "../swc_css_compat", optional = true }
swc_css_minifier = { version = "0.116.14", path = "../swc_css_minifier", optional = true }
swc_css_modules = { version = "0.29.15", path = "../swc_css_modules", optional = true }
swc_css_parser = { version = "0.150.14", path = "../swc_css_parser" }
swc_css_prefixer = { version = "0.153.16", path = "../swc_css_prefixer", optional = true }
swc_css_utils = { version = "0.137.9", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.9", path = "../swc_css_visit" }

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.13"
version = "0.151.14"
[lib]
bench = false
@ -28,6 +28,6 @@ swc_css_utils = { version = "0.137.9", path = "../swc_css_utils" }
swc_common = { version = "0.33.8", path = "../swc_common", features = [
"sourcemap",
] }
swc_css_parser = { version = "0.150.13", path = "../swc_css_parser" }
swc_css_parser = { version = "0.150.14", path = "../swc_css_parser" }
swc_css_visit = { version = "0.139.9", path = "../swc_css_visit" }
testing = { version = "0.35.10", 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.13"
version = "0.27.14"
[lib]
bench = false
@ -25,6 +25,6 @@ swc_css_utils = { version = "0.137.9", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.9", path = "../swc_css_visit" }
[dev-dependencies]
swc_css_codegen = { version = "0.151.13", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.13", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.151.14", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.14", path = "../swc_css_parser" }
testing = { version = "0.35.10", 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.14"
version = "0.60.15"
[lib]
bench = false
@ -28,5 +28,5 @@ swc_css_visit = { version = "0.139.9", path = "../swc_css_visit" }
[dev-dependencies]
serde_json = "1.0.79"
swc_css_parser = { version = "0.150.13", path = "../swc_css_parser" }
swc_css_parser = { version = "0.150.14", path = "../swc_css_parser" }
testing = { version = "0.35.10", 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.13"
version = "0.116.14"
[lib]
bench = false
@ -24,8 +24,8 @@ swc_css_visit = { version = "0.139.9", path = "../swc_css_visit" }
[dev-dependencies]
criterion = "0.5"
swc_css_codegen = { version = "0.151.13", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.13", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.151.14", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.14", path = "../swc_css_parser" }
swc_node_base = { version = "0.5.9", path = "../swc_node_base" }
testing = { version = "0.35.10", 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.14"
version = "0.29.15"
[lib]
bench = false
@ -21,12 +21,12 @@ serde = { version = "1", features = ["derive"] }
swc_atoms = { version = "0.6.4", path = "../swc_atoms" }
swc_common = { version = "0.33.8", path = "../swc_common" }
swc_css_ast = { version = "0.140.9", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.13", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.13", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.151.14", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.14", path = "../swc_css_parser" }
swc_css_visit = { version = "0.139.9", path = "../swc_css_visit" }
[dev-dependencies]
serde_json = "1"
swc_css_compat = { version = "0.27.13", path = "../swc_css_compat" }
swc_css_compat = { version = "0.27.14", path = "../swc_css_compat" }
testing = { version = "0.35.10", 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.13"
version = "0.150.14"
[lib]
bench = false

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.15"
version = "0.153.16"
[lib]
bench = false
@ -25,6 +25,6 @@ swc_css_utils = { version = "0.137.9", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.9", path = "../swc_css_visit" }
[dev-dependencies]
swc_css_codegen = { version = "0.151.13", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.13", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.151.14", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.14", path = "../swc_css_parser" }
testing = { version = "0.35.10", path = "../testing" }

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.45"
version = "0.194.46"
[package.metadata.docs.rs]
all-features = true
@ -40,7 +40,7 @@ swc_node_comments = { version = "0.20.8", path = "../swc_node_comments/" }
criterion = "0.5"
pretty_assertions = "1.3"
swc = { version = "0.269.41", path = "../swc" }
swc = { version = "0.269.42", path = "../swc" }
swc_ecma_ast = { version = "0.110.9", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.141.18", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "0.226.33", 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.42"
version = "0.134.43"
[package.metadata.docs.rs]
all-features = true
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies]
swc_html_ast = {version = "0.33.8", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.42.11", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.131.41", path = "../swc_html_minifier", optional = true}
swc_html_minifier = {version = "0.131.42", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.39.11", path = "../swc_html_parser"}
swc_html_visit = {version = "0.33.8", 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.41"
version = "0.131.42"
[lib]
bench = false
@ -24,9 +24,9 @@ swc_atoms = { version = "0.6.4", path = "../swc_atoms" }
swc_cached = { version = "0.3.18", path = "../swc_cached" }
swc_common = { version = "0.33.8", path = "../swc_common" }
swc_css_ast = { version = "0.140.9", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.13", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.116.13", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.150.13", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.151.14", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.116.14", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.150.14", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.110.9", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.146.20", 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.46"
version = "0.58.47"
[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.41", path = "../swc" }
swc = { version = "0.269.42", path = "../swc" }
swc_atoms = { version = "0.6.4", path = "../swc_atoms" }
swc_bundler = { version = "0.222.36", 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.19"
version = "0.104.20"
[lib]
bench = false
@ -79,7 +79,7 @@ swc_atoms = { version = "0.6.4", path = '../swc_atoms' }
swc_css_ast = { version = "0.140.9", path = "../swc_css_ast", features = [
"rkyv-impl",
] }
swc_css_parser = { version = "0.150.13", path = "../swc_css_parser" }
swc_css_parser = { version = "0.150.14", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.110.9", path = "../swc_ecma_ast", features = [
"rkyv-impl",
] }