mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 02:06:08 +03:00
chore: Publish crates
This commit is contained in:
parent
f8f04e031e
commit
0fc5c37154
@ -37,6 +37,12 @@
|
||||
|
||||
- **(ci)** Reduce CI time (#3128) ([61cd7da](https://github.com/swc-project/swc/commit/61cd7da265bd775605a0e48346f70b41adf9a225))
|
||||
|
||||
### Refactor
|
||||
|
||||
|
||||
|
||||
- **(es/react/fast-refresh)** Use `VisitMut` (#3129) ([f8f04e0](https://github.com/swc-project/swc/commit/f8f04e031e218393abd8ae5ca6469484b0fe90d3))
|
||||
|
||||
### Security
|
||||
|
||||
|
||||
|
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -2547,7 +2547,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc"
|
||||
version = "0.100.1"
|
||||
version = "0.100.2"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
@ -3013,7 +3013,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_transforms"
|
||||
version = "0.103.7"
|
||||
version = "0.103.8"
|
||||
dependencies = [
|
||||
"pretty_assertions 0.6.1",
|
||||
"sourcemap",
|
||||
@ -3188,7 +3188,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_transforms_react"
|
||||
version = "0.67.0"
|
||||
version = "0.67.1"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"base64 0.13.0",
|
||||
@ -3287,7 +3287,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecmascript"
|
||||
version = "0.99.7"
|
||||
version = "0.99.8"
|
||||
dependencies = [
|
||||
"swc_ecma_ast",
|
||||
"swc_ecma_codegen",
|
||||
|
@ -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.100.1"
|
||||
version = "0.100.2"
|
||||
|
||||
[lib]
|
||||
name = "swc"
|
||||
@ -62,7 +62,7 @@ swc_ecma_loader = {version = "0.25.3", path = "../swc_ecma_loader", features = [
|
||||
swc_ecma_minifier = {version = "0.60.1", path = "../swc_ecma_minifier"}
|
||||
swc_ecma_parser = {version = "0.82.0", path = "../swc_ecma_parser"}
|
||||
swc_ecma_preset_env = {version = "0.76.2", path = "../swc_ecma_preset_env"}
|
||||
swc_ecma_transforms = {version = "0.103.7", path = "../swc_ecma_transforms", features = [
|
||||
swc_ecma_transforms = {version = "0.103.8", path = "../swc_ecma_transforms", features = [
|
||||
"compat",
|
||||
"module",
|
||||
"optimization",
|
||||
@ -75,7 +75,7 @@ swc_ecma_transforms_compat = {version = "0.59.10", path = "../swc_ecma_transform
|
||||
swc_ecma_transforms_optimization = {version = "0.73.1", path = "../swc_ecma_transforms_optimization"}
|
||||
swc_ecma_utils = {version = "0.56.0", path = "../swc_ecma_utils"}
|
||||
swc_ecma_visit = {version = "0.46.0", path = "../swc_ecma_visit"}
|
||||
swc_ecmascript = {version = "0.99.7", path = "../swc_ecmascript"}
|
||||
swc_ecmascript = {version = "0.99.8", path = "../swc_ecmascript"}
|
||||
swc_node_comments = {version = "0.2.0", path = "../swc_node_comments"}
|
||||
swc_plugin_runner = {version = "0.22.0", path = "../swc_plugin_runner", optional = true}
|
||||
swc_visit = {version = "0.3.0", path = "../swc_visit"}
|
||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecma_transforms"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.103.7"
|
||||
version = "0.103.8"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -32,7 +32,7 @@ swc_ecma_transforms_compat = {version = "0.59.10", path = "../swc_ecma_transform
|
||||
swc_ecma_transforms_module = {version = "0.65.0", path = "../swc_ecma_transforms_module", optional = true}
|
||||
swc_ecma_transforms_optimization = {version = "0.73.1", path = "../swc_ecma_transforms_optimization", optional = true}
|
||||
swc_ecma_transforms_proposal = {version = "0.65.0", path = "../swc_ecma_transforms_proposal", optional = true}
|
||||
swc_ecma_transforms_react = {version = "0.67.0", path = "../swc_ecma_transforms_react", optional = true}
|
||||
swc_ecma_transforms_react = {version = "0.67.1", path = "../swc_ecma_transforms_react", optional = true}
|
||||
swc_ecma_transforms_typescript = {version = "0.69.1", path = "../swc_ecma_transforms_typescript", optional = true}
|
||||
swc_ecma_utils = {version = "0.56.0", path = "../swc_ecma_utils"}
|
||||
swc_ecma_visit = {version = "0.46.0", path = "../swc_ecma_visit"}
|
||||
|
@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecma_transforms_react"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.67.0"
|
||||
version = "0.67.1"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecmascript"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.99.7"
|
||||
version = "0.99.8"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -39,7 +39,7 @@ swc_ecma_dep_graph = {version = "0.52.0", path = "../swc_ecma_dep_graph", option
|
||||
swc_ecma_minifier = {version = "0.60.1", path = "../swc_ecma_minifier", optional = true}
|
||||
swc_ecma_parser = {version = "0.82.0", path = "../swc_ecma_parser", optional = true, default-features = false}
|
||||
swc_ecma_preset_env = {version = "0.76.2", path = "../swc_ecma_preset_env", optional = true}
|
||||
swc_ecma_transforms = {version = "0.103.7", path = "../swc_ecma_transforms", optional = true}
|
||||
swc_ecma_transforms = {version = "0.103.8", path = "../swc_ecma_transforms", optional = true}
|
||||
swc_ecma_utils = {version = "0.56.0", path = "../swc_ecma_utils", optional = true}
|
||||
swc_ecma_visit = {version = "0.46.0", path = "../swc_ecma_visit", optional = true}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user