mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
chore: Publish crates
This commit is contained in:
parent
73c48a8e6e
commit
ca6325ca7d
@ -22,6 +22,9 @@
|
||||
|
||||
- **(es/minifier)** Move assign with seq init into seq (#5847) ([63fb0c4](https://github.com/swc-project/swc/commit/63fb0c4ad34698d4d3f0c49ff5a78f6e446e64f9))
|
||||
|
||||
|
||||
- **(preset-env/base)** Implement more traits for `BrowserData` and `Version` (#5879) ([73c48a8](https://github.com/swc-project/swc/commit/73c48a8e6eb3d002ca0c575d253f32ae1aa6e5ea))
|
||||
|
||||
### Miscellaneous Tasks
|
||||
|
||||
|
||||
|
18
Cargo.lock
generated
18
Cargo.lock
generated
@ -168,7 +168,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "binding_macros"
|
||||
version = "0.14.27"
|
||||
version = "0.14.28"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"console_error_panic_hook",
|
||||
@ -2082,7 +2082,7 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
||||
|
||||
[[package]]
|
||||
name = "preset_env_base"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
@ -2923,7 +2923,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc"
|
||||
version = "0.226.27"
|
||||
version = "0.226.28"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"ansi_term",
|
||||
@ -3111,7 +3111,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_core"
|
||||
version = "0.23.25"
|
||||
version = "0.23.26"
|
||||
dependencies = [
|
||||
"binding_macros",
|
||||
"once_cell",
|
||||
@ -3264,7 +3264,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_css_prefixer"
|
||||
version = "0.123.6"
|
||||
version = "0.123.7"
|
||||
dependencies = [
|
||||
"once_cell",
|
||||
"preset_env_base",
|
||||
@ -3492,7 +3492,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_preset_env"
|
||||
version = "0.169.22"
|
||||
version = "0.169.23"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
@ -3853,7 +3853,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecmascript"
|
||||
version = "0.200.26"
|
||||
version = "0.200.27"
|
||||
dependencies = [
|
||||
"swc_ecma_ast",
|
||||
"swc_ecma_codegen",
|
||||
@ -3901,7 +3901,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_estree_compat"
|
||||
version = "0.148.27"
|
||||
version = "0.148.28"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
@ -4086,7 +4086,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_node_bundler"
|
||||
version = "0.12.27"
|
||||
version = "0.12.28"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"dashmap",
|
||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "binding_macros"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.14.27"
|
||||
version = "0.14.28"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -30,7 +30,7 @@ binding_wasm = [
|
||||
|
||||
[dependencies]
|
||||
# Common deps for the SWC imports
|
||||
swc = { optional = true, version = "0.226.27", path = "../swc" }
|
||||
swc = { optional = true, version = "0.226.28", path = "../swc" }
|
||||
swc_common = { optional = true, version = "0.28.7", path = "../swc_common" }
|
||||
swc_ecma_ast = { optional = true, version = "0.91.7", path = "../swc_ecma_ast" }
|
||||
swc_ecma_transforms = { optional = true, version = "0.193.22", path = "../swc_ecma_transforms" }
|
||||
|
@ -5,7 +5,7 @@ documentation = "https://rustdoc.swc.rs/preset_env_base/"
|
||||
edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "preset_env_base"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
@ -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.226.27"
|
||||
version = "0.226.28"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -74,7 +74,7 @@ swc_ecma_loader = { version = "0.40.7", path = "../swc_ecma_loader", features =
|
||||
] }
|
||||
swc_ecma_minifier = { version = "0.154.26", path = "../swc_ecma_minifier" }
|
||||
swc_ecma_parser = { version = "0.119.11", path = "../swc_ecma_parser" }
|
||||
swc_ecma_preset_env = { version = "0.169.22", path = "../swc_ecma_preset_env" }
|
||||
swc_ecma_preset_env = { version = "0.169.23", path = "../swc_ecma_preset_env" }
|
||||
swc_ecma_transforms = { version = "0.193.22", path = "../swc_ecma_transforms", features = [
|
||||
"compat",
|
||||
"module",
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_core"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.23.25"
|
||||
version = "0.23.26"
|
||||
[package.metadata.docs.rs]
|
||||
features = [
|
||||
"common_perf",
|
||||
@ -300,8 +300,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.14.27", path = "../binding_macros" }
|
||||
swc = { optional = true, version = "0.226.27", path = "../swc" }
|
||||
binding_macros = { optional = true, version = "0.14.28", path = "../binding_macros" }
|
||||
swc = { optional = true, version = "0.226.28", path = "../swc" }
|
||||
swc_atoms = { optional = true, version = "0.4.14", path = "../swc_atoms" }
|
||||
swc_bundler = { optional = true, version = "0.187.26", path = "../swc_bundler" }
|
||||
swc_cached = { optional = true, version = "0.3.10", path = "../swc_cached" }
|
||||
@ -310,7 +310,7 @@ swc_css_ast = { optional = true, version = "0.112.6", path
|
||||
swc_css_codegen = { optional = true, version = "0.122.6", path = "../swc_css_codegen" }
|
||||
swc_css_minifier = { optional = true, version = "0.87.9", path = "../swc_css_minifier" }
|
||||
swc_css_parser = { optional = true, version = "0.121.6", path = "../swc_css_parser" }
|
||||
swc_css_prefixer = { optional = true, version = "0.123.6", path = "../swc_css_prefixer" }
|
||||
swc_css_prefixer = { optional = true, version = "0.123.7", path = "../swc_css_prefixer" }
|
||||
swc_css_utils = { optional = true, version = "0.109.6", path = "../swc_css_utils/" }
|
||||
swc_css_visit = { optional = true, version = "0.111.6", path = "../swc_css_visit" }
|
||||
swc_ecma_ast = { optional = true, version = "0.91.7", path = "../swc_ecma_ast" }
|
||||
@ -329,7 +329,7 @@ swc_ecma_transforms_typescript = { optional = true, version = "0.154.19", path
|
||||
swc_ecma_utils = { optional = true, version = "0.102.13", path = "../swc_ecma_utils" }
|
||||
swc_ecma_visit = { optional = true, version = "0.77.7", path = "../swc_ecma_visit" }
|
||||
swc_node_base = { optional = true, version = "0.5.5", path = "../swc_node_base" }
|
||||
swc_node_bundler = { optional = true, version = "0.12.27", path = "../swc_node_bundler" }
|
||||
swc_node_bundler = { optional = true, version = "0.12.28", path = "../swc_node_bundler" }
|
||||
swc_nodejs_common = { optional = true, version = "0.0.1", path = "../swc_nodejs_common" }
|
||||
swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" }
|
||||
swc_plugin_macro = { optional = true, version = "0.9.8", path = "../swc_plugin_macro" }
|
||||
|
@ -7,14 +7,14 @@ 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.123.6"
|
||||
version = "0.123.7"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
||||
[dependencies]
|
||||
once_cell = "1.10.0"
|
||||
preset_env_base = { version = "0.3.0", path = "../preset_env_base" }
|
||||
preset_env_base = { version = "0.3.2", path = "../preset_env_base" }
|
||||
serde = { version = "1.0.118", features = ["derive"] }
|
||||
serde_json = "1.0.61"
|
||||
swc_atoms = { version = "0.4.14", path = "../swc_atoms" }
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecma_preset_env"
|
||||
version = "0.169.22"
|
||||
version = "0.169.23"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -17,7 +17,7 @@ anyhow = "1"
|
||||
dashmap = "5.1.0"
|
||||
indexmap = "1.6.2"
|
||||
once_cell = "1.10.0"
|
||||
preset_env_base = { version = "0.3.0", path = "../preset_env_base" }
|
||||
preset_env_base = { version = "0.3.2", path = "../preset_env_base" }
|
||||
semver = { version = "1.0.4", features = ["serde"] }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecmascript"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.200.26"
|
||||
version = "0.200.27"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -44,7 +44,7 @@ swc_ecma_codegen = { version = "0.124.13", path = "../swc_ecma_codegen", opti
|
||||
swc_ecma_dep_graph = { version = "0.91.11", path = "../swc_ecma_dep_graph", optional = true }
|
||||
swc_ecma_minifier = { version = "0.154.26", path = "../swc_ecma_minifier", optional = true }
|
||||
swc_ecma_parser = { version = "0.119.11", path = "../swc_ecma_parser", optional = true, default-features = false }
|
||||
swc_ecma_preset_env = { version = "0.169.22", path = "../swc_ecma_preset_env", optional = true }
|
||||
swc_ecma_preset_env = { version = "0.169.23", path = "../swc_ecma_preset_env", optional = true }
|
||||
swc_ecma_quote = { version = "0.35.13", path = "../swc_ecma_quote", optional = true }
|
||||
swc_ecma_transforms = { version = "0.193.22", path = "../swc_ecma_transforms", optional = true }
|
||||
swc_ecma_utils = { version = "0.102.13", path = "../swc_ecma_utils", optional = true }
|
||||
|
@ -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.148.27"
|
||||
version = "0.148.28"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -38,7 +38,7 @@ swc_node_comments = { version = "0.15.7", path = "../swc_node_comments/" }
|
||||
[dev-dependencies]
|
||||
criterion = "0.3"
|
||||
pretty_assertions = "1.1"
|
||||
swc = { version = "0.226.27", path = "../swc" }
|
||||
swc = { version = "0.226.28", path = "../swc" }
|
||||
swc_ecma_ast = { version = "0.91.7", path = "../swc_ecma_ast" }
|
||||
swc_ecma_parser = { version = "0.119.11", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms = { version = "0.193.22", 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.12.27"
|
||||
version = "0.12.28"
|
||||
|
||||
[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.226.27", path = "../swc" }
|
||||
swc = { version = "0.226.28", path = "../swc" }
|
||||
swc_atoms = { version = "0.4.14", path = "../swc_atoms" }
|
||||
swc_bundler = { version = "0.187.26", path = "../swc_bundler", features = [
|
||||
"concurrent",
|
||||
|
Loading…
Reference in New Issue
Block a user