mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 21:54:36 +03:00
chore: Publish crates
This commit is contained in:
parent
a3e855f720
commit
3e276fa323
@ -38,6 +38,9 @@
|
||||
- **(css/ast)** Make `keyword` optional (#5543) ([a3c1ac6](https://github.com/swc-project/swc/commit/a3c1ac67d708b6c95ef9a9b0892df90bdb26ffe5))
|
||||
|
||||
|
||||
- **(es/plugin)** Provide `swc_core` diagnostic from plugin (#5591) ([a3e855f](https://github.com/swc-project/swc/commit/a3e855f720ade3b823c1f7e59f0e6dfac197895c))
|
||||
|
||||
|
||||
- **(html/minifier)** Improve minification modes (#5568) ([3cb6fc2](https://github.com/swc-project/swc/commit/3cb6fc2a29b541c32ff95baf0a07021ffe0dd089))
|
||||
|
||||
### Testing
|
||||
|
14
Cargo.lock
generated
14
Cargo.lock
generated
@ -168,7 +168,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "binding_macros"
|
||||
version = "0.5.0"
|
||||
version = "0.6.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"console_error_panic_hook",
|
||||
@ -2878,7 +2878,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc"
|
||||
version = "0.217.2"
|
||||
version = "0.218.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"ansi_term",
|
||||
@ -3063,7 +3063,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_core"
|
||||
version = "0.10.0"
|
||||
version = "0.11.0"
|
||||
dependencies = [
|
||||
"binding_macros",
|
||||
"once_cell",
|
||||
@ -3833,7 +3833,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_estree_compat"
|
||||
version = "0.139.0"
|
||||
version = "0.140.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
@ -4016,7 +4016,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_node_bundler"
|
||||
version = "0.3.0"
|
||||
version = "0.4.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"dashmap",
|
||||
@ -4068,7 +4068,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_plugin"
|
||||
version = "0.89.1"
|
||||
version = "0.90.0"
|
||||
dependencies = [
|
||||
"once_cell",
|
||||
]
|
||||
@ -4097,7 +4097,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_plugin_runner"
|
||||
version = "0.72.0"
|
||||
version = "0.73.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"criterion",
|
||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "binding_macros"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.5.0"
|
||||
version = "0.6.0"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -30,7 +30,7 @@ binding_wasm = [
|
||||
|
||||
[dependencies]
|
||||
# Common deps for the SWC imports
|
||||
swc = { optional = true, version = "0.217.0", path = "../swc" }
|
||||
swc = { optional = true, version = "0.218.0", path = "../swc" }
|
||||
swc_common = { optional = true, version = "0.27.7", path = "../swc_common" }
|
||||
swc_ecma_ast = { optional = true, version = "0.90.10", path = "../swc_ecma_ast" }
|
||||
swc_ecma_transforms = { optional = true, version = "0.185.0", path = "../swc_ecma_transforms" }
|
||||
|
@ -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.217.2"
|
||||
version = "0.218.0"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -90,7 +90,7 @@ swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
|
||||
swc_error_reporters = { version = "0.11.4", path = "../swc_error_reporters" }
|
||||
swc_node_comments = { version = "0.14.4", path = "../swc_node_comments" }
|
||||
swc_plugin_proxy = { version = "0.18.13", path = "../swc_plugin_proxy", optional = true }
|
||||
swc_plugin_runner = { version = "0.72.0", path = "../swc_plugin_runner", optional = true, default-features = false }
|
||||
swc_plugin_runner = { version = "0.73.0", path = "../swc_plugin_runner", optional = true, default-features = false }
|
||||
swc_timer = { version = "0.15.4", path = "../swc_timer" }
|
||||
swc_visit = { version = "0.5.2", path = "../swc_visit" }
|
||||
tracing = "0.1.32"
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_core"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.10.0"
|
||||
version = "0.11.0"
|
||||
[package.metadata.docs.rs]
|
||||
features = [
|
||||
"common_perf",
|
||||
@ -224,8 +224,8 @@ 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.5.0", path = "../binding_macros" }
|
||||
swc = { optional = true, version = "0.217.0", path = "../swc" }
|
||||
binding_macros = { optional = true, version = "0.6.0", path = "../binding_macros" }
|
||||
swc = { optional = true, version = "0.218.0", path = "../swc" }
|
||||
swc_atoms = { optional = true, version = "0.4.8", path = "../swc_atoms" }
|
||||
swc_bundler = { optional = true, version = "0.179.0", path = "../swc_bundler" }
|
||||
swc_common = { optional = true, version = "0.27.11", path = "../swc_common" }
|
||||
@ -238,14 +238,14 @@ swc_ecma_transforms_testing = { optional = true, version = "0.106.0", path = "..
|
||||
swc_ecma_utils = { optional = true, version = "0.100.0", path = "../swc_ecma_utils" }
|
||||
swc_ecma_visit = { optional = true, version = "0.76.6", path = "../swc_ecma_visit" }
|
||||
swc_node_base = { optional = true, version = "0.5.5", path = "../swc_node_base" }
|
||||
swc_node_bundler = { optional = true, version = "0.3.0", path = "../swc_node_bundler" }
|
||||
swc_node_bundler = { optional = true, version = "0.4.0", path = "../swc_node_bundler" }
|
||||
swc_nodejs_common = { optional = true, version = "0.0.1", path = "../swc_nodejs_common" }
|
||||
swc_plugin = { optional = true, version = "0.89.1", path = "../swc_plugin" }
|
||||
swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" }
|
||||
swc_plugin_macro = { optional = true, version = "0.9.7", path = "../swc_plugin_macro" }
|
||||
swc_plugin_proxy = { optional = true, version = "0.18.13", path = "../swc_plugin_proxy" }
|
||||
swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" }
|
||||
# TODO: eventually swc_plugin_runner needs to remove default features
|
||||
swc_plugin_runner = { optional = true, version = "0.72.0", path = "../swc_plugin_runner", default-features = false }
|
||||
swc_plugin_runner = { optional = true, version = "0.73.0", path = "../swc_plugin_runner", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
testing = { version = "0.29.4", path = "../testing" }
|
||||
|
@ -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.139.0"
|
||||
version = "0.140.0"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -38,7 +38,7 @@ swc_node_comments = { version = "0.14.4", path = "../swc_node_comments/" }
|
||||
[dev-dependencies]
|
||||
criterion = "0.3"
|
||||
pretty_assertions = "1.1"
|
||||
swc = { version = "0.217.0", path = "../swc" }
|
||||
swc = { version = "0.218.0", path = "../swc" }
|
||||
swc_ecma_ast = { version = "0.90.10", path = "../swc_ecma_ast" }
|
||||
swc_ecma_parser = { version = "0.118.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms = { version = "0.185.0", path = "../swc_ecma_transforms/" }
|
||||
|
@ -7,7 +7,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_node_bundler"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.3.0"
|
||||
version = "0.4.0"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -26,7 +26,7 @@ regex = "1"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
string_enum = { version = "0.3", path = "../string_enum" }
|
||||
swc = { version = "0.217.0", path = "../swc" }
|
||||
swc = { version = "0.218.0", path = "../swc" }
|
||||
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
|
||||
swc_bundler = { version = "0.179.0", path = "../swc_bundler", features = [
|
||||
"concurrent",
|
||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_plugin"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.89.1"
|
||||
version = "0.90.0"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_plugin_runner"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.72.0"
|
||||
version = "0.73.0"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
Loading…
Reference in New Issue
Block a user