Skip to content

Commit

Permalink
chore: Publish crates
Browse files Browse the repository at this point in the history
  • Loading branch information
swc-bot committed Dec 16, 2022
1 parent 1fc97a7 commit 78f08bb
Show file tree
Hide file tree
Showing 18 changed files with 71 additions and 68 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -23,6 +23,9 @@
- **(css/parser)** Normalize selector AST (#6657) ([649438b](https://github.com/swc-project/swc/commit/649438b76a8ea61f2ddb2160a212d318d9d05267))


- **(css/parser)** Normalize declaration and important (#6663) ([1fc97a7](https://github.com/swc-project/swc/commit/1fc97a7cea4ddf5b70f3b9193388e481caa60731))


- **(css/prefixer)** Support font-face format (#6644) ([199ac74](https://github.com/swc-project/swc/commit/199ac7461814553bab97c1f0f7b1c89f34897122))

### Performance
Expand Down
32 changes: 16 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/binding_macros/Cargo.toml
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "binding_macros"
repository = "https://github.com/swc-project/swc.git"
version = "0.24.12"
version = "0.24.13"

[lib]
bench = false
Expand Down Expand Up @@ -33,7 +33,7 @@ binding_wasm = [

[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "0.236.12", path = "../swc" }
swc = { optional = true, version = "0.236.13", path = "../swc" }
swc_common = { optional = true, version = "0.29.23", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.95.7", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.199.17", path = "../swc_ecma_transforms" }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc/Cargo.toml
Expand Up @@ -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.236.12"
version = "0.236.13"

[lib]
bench = false
Expand Down Expand Up @@ -98,7 +98,7 @@ swc_ecma_visit = { version = "0.81.7", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.13.24", path = "../swc_error_reporters" }
swc_node_comments = { version = "0.16.23", path = "../swc_node_comments" }
swc_plugin_proxy = { version = "0.23.7", path = "../swc_plugin_proxy", optional = true }
swc_plugin_runner = { version = "0.81.6", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_plugin_runner = { version = "0.81.7", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_timer = { version = "0.17.25", path = "../swc_timer" }
swc_visit = { version = "0.5.2", path = "../swc_visit" }
tracing = "0.1.32"
Expand Down
22 changes: 11 additions & 11 deletions crates/swc_core/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_core"
repository = "https://github.com/swc-project/swc.git"
version = "0.48.25"
version = "0.48.26"
[package.metadata.docs.rs]
features = [
"common_perf",
Expand Down Expand Up @@ -340,18 +340,18 @@ wasmer = { optional = true, version = "2.3.0", default-features = false }
wasmer-wasi = { optional = true, version = "2.3.0", default-features = false }

# swc_* dependencies
binding_macros = { optional = true, version = "0.24.12", path = "../binding_macros" }
swc = { optional = true, version = "0.236.12", path = "../swc" }
binding_macros = { optional = true, version = "0.24.13", path = "../binding_macros" }
swc = { optional = true, version = "0.236.13", path = "../swc" }
swc_atoms = { optional = true, version = "0.4.29", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "0.193.24", path = "../swc_bundler" }
swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" }
swc_common = { optional = true, version = "0.29.23", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.131.3", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.141.6", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.106.12", path = "../swc_css_minifier" }
swc_css_modules = { optional = true, version = "0.17.9", path = "../swc_css_modules" }
swc_css_parser = { optional = true, version = "0.140.6", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.142.10", path = "../swc_css_prefixer" }
swc_css_codegen = { optional = true, version = "0.141.7", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.106.13", path = "../swc_css_minifier" }
swc_css_modules = { optional = true, version = "0.17.10", path = "../swc_css_modules" }
swc_css_parser = { optional = true, version = "0.140.7", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.142.11", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.128.3", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.130.3", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "0.95.7", path = "../swc_ecma_ast" }
Expand All @@ -373,16 +373,16 @@ swc_ecma_usage_analyzer = { optional = true, version = "0.1.6", path =
swc_ecma_utils = { optional = true, version = "0.106.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "0.81.7", path = "../swc_ecma_visit" }
swc_node_base = { optional = true, version = "0.5.8", path = "../swc_node_base" }
swc_node_bundler = { optional = true, version = "0.22.12", path = "../swc_node_bundler" }
swc_node_bundler = { optional = true, version = "0.22.13", path = "../swc_node_bundler" }
swc_nodejs_common = { optional = true, version = "0.0.4", path = "../swc_nodejs_common" }
swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" }
swc_plugin_macro = { optional = true, version = "0.9.10", path = "../swc_plugin_macro" }
swc_plugin_proxy = { optional = true, version = "0.23.7", path = "../swc_plugin_proxy" }
swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" }
testing = { optional = true, version = "0.31.25", path = "../testing" }
# TODO: eventually swc_plugin_runner needs to remove default features
swc_css_compat = { version = "0.16.9", path = "../swc_css_compat", optional = true }
swc_plugin_runner = { optional = true, version = "0.81.6", path = "../swc_plugin_runner", default-features = false }
swc_css_compat = { version = "0.16.10", path = "../swc_css_compat", optional = true }
swc_plugin_runner = { optional = true, version = "0.81.7", path = "../swc_plugin_runner", default-features = false }

[build-dependencies]
vergen = { version = "7.3.2", default-features = false, features = ["cargo"] }
Expand Down
14 changes: 7 additions & 7 deletions crates/swc_css/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css"
repository = "https://github.com/swc-project/swc.git"
version = "0.144.19"
version = "0.144.20"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -23,11 +23,11 @@ prefixer = ["swc_css_prefixer"]

[dependencies]
swc_css_ast = {version = "0.131.3", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.141.6", path = "../swc_css_codegen"}
swc_css_compat = {version = "0.16.9", path = "../swc_css_compat", optional = true}
swc_css_minifier = {version = "0.106.12", path = "../swc_css_minifier", optional = true}
swc_css_modules = {version = "0.17.9", path = "../swc_css_modules", optional = true}
swc_css_parser = {version = "0.140.6", path = "../swc_css_parser"}
swc_css_prefixer = {version = "0.142.10", path = "../swc_css_prefixer", optional = true}
swc_css_codegen = {version = "0.141.7", path = "../swc_css_codegen"}
swc_css_compat = {version = "0.16.10", path = "../swc_css_compat", optional = true}
swc_css_minifier = {version = "0.106.13", path = "../swc_css_minifier", optional = true}
swc_css_modules = {version = "0.17.10", path = "../swc_css_modules", optional = true}
swc_css_parser = {version = "0.140.7", path = "../swc_css_parser"}
swc_css_prefixer = {version = "0.142.11", path = "../swc_css_prefixer", optional = true}
swc_css_utils = {version = "0.128.3", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.130.3", path = "../swc_css_visit"}
4 changes: 2 additions & 2 deletions crates/swc_css_codegen/Cargo.toml
Expand Up @@ -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.141.6"
version = "0.141.7"

[lib]
bench = false
Expand All @@ -27,6 +27,6 @@ swc_css_utils = { version = "0.128.3", path = "../swc_css_utils" }
swc_common = { version = "0.29.23", path = "../swc_common", features = [
"sourcemap",
] }
swc_css_parser = { version = "0.140.6", path = "../swc_css_parser" }
swc_css_parser = { version = "0.140.7", path = "../swc_css_parser" }
swc_css_visit = { version = "0.130.3", path = "../swc_css_visit" }
testing = { version = "0.31.25", path = "../testing" }
6 changes: 3 additions & 3 deletions crates/swc_css_compat/Cargo.toml
Expand Up @@ -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.16.9"
version = "0.16.10"

[lib]
bench = false
Expand All @@ -24,6 +24,6 @@ swc_css_utils = {version = "0.128.3", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.130.3", path = "../swc_css_visit"}

[dev-dependencies]
swc_css_codegen = {version = "0.141.6", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.140.6", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.141.7", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.140.7", path = "../swc_css_parser"}
testing = {version = "0.31.25", path = "../testing"}
4 changes: 2 additions & 2 deletions crates/swc_css_lints/Cargo.toml
Expand Up @@ -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.50.6"
version = "0.50.7"

[lib]
bench = false
Expand All @@ -26,5 +26,5 @@ thiserror = "1.0.30"

[dev-dependencies]
serde_json = "1.0.79"
swc_css_parser = { version = "0.140.6", path = "../swc_css_parser" }
swc_css_parser = { version = "0.140.7", path = "../swc_css_parser" }
testing = { version = "0.31.25", path = "../testing" }
6 changes: 3 additions & 3 deletions crates/swc_css_minifier/Cargo.toml
Expand Up @@ -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.106.12"
version = "0.106.13"

[lib]
bench = false
Expand All @@ -22,8 +22,8 @@ swc_css_visit = { version = "0.130.3", path = "../swc_css_visit" }

[dev-dependencies]
criterion = "0.3"
swc_css_codegen = { version = "0.141.6", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.140.6", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.141.7", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.140.7", path = "../swc_css_parser" }
swc_node_base = { version = "0.5.8", path = "../swc_node_base" }
testing = { version = "0.31.25", path = "../testing" }

Expand Down
8 changes: 4 additions & 4 deletions crates/swc_css_modules/Cargo.toml
Expand Up @@ -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.17.9"
version = "0.17.10"

[lib]
bench = false
Expand All @@ -20,11 +20,11 @@ serde = {version = "1", features = ["derive"]}
swc_atoms = {version = "0.4.29", path = "../swc_atoms"}
swc_common = {version = "0.29.23", path = "../swc_common"}
swc_css_ast = {version = "0.131.3", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.141.6", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.140.6", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.141.7", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.140.7", path = "../swc_css_parser"}
swc_css_visit = {version = "0.130.3", path = "../swc_css_visit"}

[dev-dependencies]
serde_json = "1"
swc_css_compat = {version = "0.16.9", path = "../swc_css_compat"}
swc_css_compat = {version = "0.16.10", path = "../swc_css_compat"}
testing = {version = "0.31.25", path = "../testing"}
2 changes: 1 addition & 1 deletion crates/swc_css_parser/Cargo.toml
Expand Up @@ -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.140.6"
version = "0.140.7"

[lib]
bench = false
Expand Down
6 changes: 3 additions & 3 deletions crates/swc_css_prefixer/Cargo.toml
Expand Up @@ -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.142.10"
version = "0.142.11"

[lib]
bench = false
Expand All @@ -24,6 +24,6 @@ swc_css_utils = {version = "0.128.3", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.130.3", path = "../swc_css_visit"}

[dev-dependencies]
swc_css_codegen = {version = "0.141.6", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.140.6", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.141.7", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.140.7", path = "../swc_css_parser"}
testing = {version = "0.31.25", path = "../testing"}

0 comments on commit 78f08bb

Please sign in to comment.