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
282232c995
commit
311758572d
@ -19,6 +19,9 @@
|
||||
|
||||
- **(es/parser)** Fix span of `ComputedPropName` (#3234) ([105cbc2](https://github.com/swc-project/swc/commit/105cbc2017e20a7c6a5d7dfdd7a9a4c396032be9))
|
||||
|
||||
|
||||
- **(es/typescript)** Remove rogue `println` (#3244) ([282232c](https://github.com/swc-project/swc/commit/282232c9958309e70a18799449802ef5d7e88123))
|
||||
|
||||
### Features
|
||||
|
||||
|
||||
|
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -2555,7 +2555,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc"
|
||||
version = "0.113.0"
|
||||
version = "0.113.1"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
@ -2999,7 +2999,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_transforms"
|
||||
version = "0.111.0"
|
||||
version = "0.111.1"
|
||||
dependencies = [
|
||||
"pretty_assertions 0.7.2",
|
||||
"sourcemap",
|
||||
@ -3221,7 +3221,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_transforms_typescript"
|
||||
version = "0.77.0"
|
||||
version = "0.77.1"
|
||||
dependencies = [
|
||||
"serde",
|
||||
"swc_atoms",
|
||||
@ -3267,7 +3267,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecmascript"
|
||||
version = "0.108.0"
|
||||
version = "0.108.1"
|
||||
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.113.0"
|
||||
version = "0.113.1"
|
||||
|
||||
[lib]
|
||||
name = "swc"
|
||||
@ -62,7 +62,7 @@ swc_ecma_loader = {version = "0.27.0", path = "../swc_ecma_loader", features = [
|
||||
swc_ecma_minifier = {version = "0.68.0", path = "../swc_ecma_minifier"}
|
||||
swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser"}
|
||||
swc_ecma_preset_env = {version = "0.84.0", path = "../swc_ecma_preset_env"}
|
||||
swc_ecma_transforms = {version = "0.111.0", path = "../swc_ecma_transforms", features = [
|
||||
swc_ecma_transforms = {version = "0.111.1", path = "../swc_ecma_transforms", features = [
|
||||
"compat",
|
||||
"module",
|
||||
"optimization",
|
||||
@ -75,7 +75,7 @@ swc_ecma_transforms_compat = {version = "0.67.0", path = "../swc_ecma_transforms
|
||||
swc_ecma_transforms_optimization = {version = "0.81.0", path = "../swc_ecma_transforms_optimization"}
|
||||
swc_ecma_utils = {version = "0.63.0", path = "../swc_ecma_utils"}
|
||||
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}
|
||||
swc_ecmascript = {version = "0.108.0", path = "../swc_ecmascript"}
|
||||
swc_ecmascript = {version = "0.108.1", path = "../swc_ecmascript"}
|
||||
swc_node_comments = {version = "0.4.0", path = "../swc_node_comments"}
|
||||
swc_plugin_runner = {version = "0.30.0", path = "../swc_plugin_runner", optional = true}
|
||||
swc_visit = {version = "0.3.0", path = "../swc_visit"}
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecma_transforms"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.111.0"
|
||||
version = "0.111.1"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -33,7 +33,7 @@ swc_ecma_transforms_module = {version = "0.73.0", path = "../swc_ecma_transforms
|
||||
swc_ecma_transforms_optimization = {version = "0.81.0", path = "../swc_ecma_transforms_optimization", optional = true}
|
||||
swc_ecma_transforms_proposal = {version = "0.73.0", path = "../swc_ecma_transforms_proposal", optional = true}
|
||||
swc_ecma_transforms_react = {version = "0.75.0", path = "../swc_ecma_transforms_react", optional = true}
|
||||
swc_ecma_transforms_typescript = {version = "0.77.0", path = "../swc_ecma_transforms_typescript", optional = true}
|
||||
swc_ecma_transforms_typescript = {version = "0.77.1", path = "../swc_ecma_transforms_typescript", optional = true}
|
||||
swc_ecma_utils = {version = "0.63.0", path = "../swc_ecma_utils"}
|
||||
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}
|
||||
unicode-xid = "0.2"
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecma_transforms_typescript"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.77.0"
|
||||
version = "0.77.1"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecmascript"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.108.0"
|
||||
version = "0.108.1"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -39,7 +39,7 @@ swc_ecma_dep_graph = {version = "0.58.0", path = "../swc_ecma_dep_graph", option
|
||||
swc_ecma_minifier = {version = "0.68.0", path = "../swc_ecma_minifier", optional = true}
|
||||
swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser", optional = true, default-features = false}
|
||||
swc_ecma_preset_env = {version = "0.84.0", path = "../swc_ecma_preset_env", optional = true}
|
||||
swc_ecma_transforms = {version = "0.111.0", path = "../swc_ecma_transforms", optional = true}
|
||||
swc_ecma_transforms = {version = "0.111.1", path = "../swc_ecma_transforms", optional = true}
|
||||
swc_ecma_utils = {version = "0.63.0", path = "../swc_ecma_utils", optional = true}
|
||||
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit", optional = true}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user