mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 14:43:33 +03:00
chore: Publish crates
This commit is contained in:
parent
7a1c2a1e2c
commit
81816f97d5
@ -1,6 +1,14 @@
|
||||
# Changelog
|
||||
## [unreleased]
|
||||
|
||||
### Refactor
|
||||
|
||||
|
||||
|
||||
- **(es/plugins)** Simplify `read_result_*` (#6426) ([7a1c2a1](https://github.com/swc-project/swc/commit/7a1c2a1e2ca98cb897899b1a5def7dba7b6a8b5c))
|
||||
|
||||
## [1.3.16] - 2022-11-13
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
|
||||
|
14
Cargo.lock
generated
14
Cargo.lock
generated
@ -168,7 +168,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "binding_macros"
|
||||
version = "0.20.87"
|
||||
version = "0.20.88"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"console_error_panic_hook",
|
||||
@ -2976,7 +2976,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc"
|
||||
version = "0.232.87"
|
||||
version = "0.232.88"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"ansi_term",
|
||||
@ -3162,7 +3162,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_core"
|
||||
version = "0.43.3"
|
||||
version = "0.43.4"
|
||||
dependencies = [
|
||||
"binding_macros",
|
||||
"once_cell",
|
||||
@ -3993,7 +3993,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_estree_compat"
|
||||
version = "0.154.87"
|
||||
version = "0.154.88"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
@ -4179,7 +4179,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_node_bundler"
|
||||
version = "0.18.87"
|
||||
version = "0.18.88"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"dashmap",
|
||||
@ -4247,7 +4247,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_plugin_proxy"
|
||||
version = "0.22.19"
|
||||
version = "0.22.20"
|
||||
dependencies = [
|
||||
"better_scoped_tls",
|
||||
"rkyv",
|
||||
@ -4260,7 +4260,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_plugin_runner"
|
||||
version = "0.77.31"
|
||||
version = "0.77.32"
|
||||
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.20.87"
|
||||
version = "0.20.88"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -30,7 +30,7 @@ binding_wasm = [
|
||||
|
||||
[dependencies]
|
||||
# Common deps for the SWC imports
|
||||
swc = { optional = true, version = "0.232.87", path = "../swc" }
|
||||
swc = { optional = true, version = "0.232.88", path = "../swc" }
|
||||
swc_common = { optional = true, version = "0.29.14", path = "../swc_common" }
|
||||
swc_ecma_ast = { optional = true, version = "0.94.19", path = "../swc_ecma_ast" }
|
||||
swc_ecma_transforms = { optional = true, version = "0.198.46", 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.232.87"
|
||||
version = "0.232.88"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -93,8 +93,8 @@ swc_ecma_utils = { version = "0.105.33", path = "../swc_ecma_utils" }
|
||||
swc_ecma_visit = { version = "0.80.19", path = "../swc_ecma_visit" }
|
||||
swc_error_reporters = { version = "0.13.14", path = "../swc_error_reporters" }
|
||||
swc_node_comments = { version = "0.16.14", path = "../swc_node_comments" }
|
||||
swc_plugin_proxy = { version = "0.22.19", path = "../swc_plugin_proxy", optional = true }
|
||||
swc_plugin_runner = { version = "0.77.31", path = "../swc_plugin_runner", optional = true, default-features = false }
|
||||
swc_plugin_proxy = { version = "0.22.20", path = "../swc_plugin_proxy", optional = true }
|
||||
swc_plugin_runner = { version = "0.77.32", path = "../swc_plugin_runner", optional = true, default-features = false }
|
||||
swc_timer = { version = "0.17.14", 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.43.3"
|
||||
version = "0.43.4"
|
||||
[package.metadata.docs.rs]
|
||||
features = [
|
||||
"common_perf",
|
||||
@ -318,8 +318,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.20.87", path = "../binding_macros" }
|
||||
swc = { optional = true, version = "0.232.87", path = "../swc" }
|
||||
binding_macros = { optional = true, version = "0.20.88", path = "../binding_macros" }
|
||||
swc = { optional = true, version = "0.232.88", path = "../swc" }
|
||||
swc_atoms = { optional = true, version = "0.4.24", path = "../swc_atoms" }
|
||||
swc_bundler = { optional = true, version = "0.192.76", path = "../swc_bundler" }
|
||||
swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" }
|
||||
@ -349,16 +349,16 @@ swc_ecma_transforms_typescript = { optional = true, version = "0.159.42", path
|
||||
swc_ecma_utils = { optional = true, version = "0.105.33", path = "../swc_ecma_utils" }
|
||||
swc_ecma_visit = { optional = true, version = "0.80.19", path = "../swc_ecma_visit" }
|
||||
swc_node_base = { optional = true, version = "0.5.8", path = "../swc_node_base" }
|
||||
swc_node_bundler = { optional = true, version = "0.18.87", path = "../swc_node_bundler" }
|
||||
swc_node_bundler = { optional = true, version = "0.18.88", 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.9", path = "../swc_plugin_macro" }
|
||||
swc_plugin_proxy = { optional = true, version = "0.22.19", path = "../swc_plugin_proxy" }
|
||||
swc_plugin_proxy = { optional = true, version = "0.22.20", path = "../swc_plugin_proxy" }
|
||||
swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" }
|
||||
testing = { optional = true, version = "0.31.14", path = "../testing" }
|
||||
# TODO: eventually swc_plugin_runner needs to remove default features
|
||||
swc_css_compat = { version = "0.12.1", path = "../swc_css_compat", optional = true }
|
||||
swc_plugin_runner = { optional = true, version = "0.77.31", path = "../swc_plugin_runner", default-features = false }
|
||||
swc_plugin_runner = { optional = true, version = "0.77.32", path = "../swc_plugin_runner", default-features = false }
|
||||
|
||||
[build-dependencies]
|
||||
vergen = { version = "7.3.2", default-features = false, features = ["cargo"] }
|
||||
|
@ -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.154.87"
|
||||
version = "0.154.88"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -38,7 +38,7 @@ swc_node_comments = { version = "0.16.14", path = "../swc_node_comments/" }
|
||||
[dev-dependencies]
|
||||
criterion = "0.3"
|
||||
pretty_assertions = "1.1"
|
||||
swc = { version = "0.232.87", path = "../swc" }
|
||||
swc = { version = "0.232.88", path = "../swc" }
|
||||
swc_ecma_ast = { version = "0.94.19", path = "../swc_ecma_ast" }
|
||||
swc_ecma_parser = { version = "0.122.26", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms = { version = "0.198.46", 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.18.87"
|
||||
version = "0.18.88"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -26,7 +26,7 @@ regex = "1"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
string_enum = { version = "0.3.2", path = "../string_enum" }
|
||||
swc = { version = "0.232.87", path = "../swc" }
|
||||
swc = { version = "0.232.88", path = "../swc" }
|
||||
swc_atoms = { version = "0.4.24", path = "../swc_atoms" }
|
||||
swc_bundler = { version = "0.192.76", path = "../swc_bundler", features = [
|
||||
"concurrent",
|
||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_plugin_proxy"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.22.19"
|
||||
version = "0.22.20"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_plugin_runner"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.77.31"
|
||||
version = "0.77.32"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -47,7 +47,7 @@ swc_common = { version = "0.29.14", path = "../swc_common", features = [
|
||||
"concurrent",
|
||||
] }
|
||||
swc_ecma_ast = { version = "0.94.19", path = "../swc_ecma_ast" }
|
||||
swc_plugin_proxy = { version = "0.22.19", path = "../swc_plugin_proxy" }
|
||||
swc_plugin_proxy = { version = "0.22.20", path = "../swc_plugin_proxy" }
|
||||
|
||||
tracing = "0.1.32"
|
||||
wasmer = { version = "2.3.0", default-features = false }
|
||||
|
Loading…
Reference in New Issue
Block a user