mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 17:54:15 +03:00
chore: Publish crates
This commit is contained in:
parent
fcb7288eb6
commit
27a8bf5104
@ -53,6 +53,9 @@
|
|||||||
- **(es/bugfix)** Add `bugfix-safari-id-destructuring-collision-in-function-expression` (#3109) ([d1c90a4](https://github.com/swc-project/swc/commit/d1c90a4e5f2ddfc71c6143ef07e16af352da25fa))
|
- **(es/bugfix)** Add `bugfix-safari-id-destructuring-collision-in-function-expression` (#3109) ([d1c90a4](https://github.com/swc-project/swc/commit/d1c90a4e5f2ddfc71c6143ef07e16af352da25fa))
|
||||||
|
|
||||||
|
|
||||||
|
- **(es/codegen)** Emit comments of `Module` and `Script` (#3358) ([fcb7288](https://github.com/swc-project/swc/commit/fcb7288eb66e027fa7278b8f028e4486059241cd))
|
||||||
|
|
||||||
|
|
||||||
- **(es/minifier)** Handle array literals in `sequences` (#3348) ([8007b2d](https://github.com/swc-project/swc/commit/8007b2dc9338e34a1e9780606fd35181890af990))
|
- **(es/minifier)** Handle array literals in `sequences` (#3348) ([8007b2d](https://github.com/swc-project/swc/commit/8007b2dc9338e34a1e9780606fd35181890af990))
|
||||||
|
|
||||||
### Miscellaneous Tasks
|
### Miscellaneous Tasks
|
||||||
|
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -2652,7 +2652,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc"
|
name = "swc"
|
||||||
version = "0.117.0"
|
version = "0.117.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ahash",
|
"ahash",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
@ -2905,7 +2905,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_ecma_codegen"
|
name = "swc_ecma_codegen"
|
||||||
version = "0.89.0"
|
version = "0.89.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"memchr",
|
"memchr",
|
||||||
@ -3366,7 +3366,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_ecmascript"
|
name = "swc_ecmascript"
|
||||||
version = "0.111.0"
|
version = "0.111.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"swc_ecma_ast",
|
"swc_ecma_ast",
|
||||||
"swc_ecma_codegen",
|
"swc_ecma_codegen",
|
||||||
|
@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc"
|
name = "swc"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.117.0"
|
version = "0.117.1"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "swc"
|
name = "swc"
|
||||||
@ -48,7 +48,7 @@ sourcemap = "6"
|
|||||||
swc_atoms = {version = "0.2", path = "../swc_atoms"}
|
swc_atoms = {version = "0.2", path = "../swc_atoms"}
|
||||||
swc_common = {version = "0.17.0", path = "../swc_common", features = ["sourcemap", "concurrent"]}
|
swc_common = {version = "0.17.0", path = "../swc_common", features = ["sourcemap", "concurrent"]}
|
||||||
swc_ecma_ast = {version = "0.65.3", path = "../swc_ecma_ast"}
|
swc_ecma_ast = {version = "0.65.3", path = "../swc_ecma_ast"}
|
||||||
swc_ecma_codegen = {version = "0.89.0", path = "../swc_ecma_codegen"}
|
swc_ecma_codegen = {version = "0.89.1", path = "../swc_ecma_codegen"}
|
||||||
swc_ecma_ext_transforms = {version = "0.50.0", path = "../swc_ecma_ext_transforms"}
|
swc_ecma_ext_transforms = {version = "0.50.0", path = "../swc_ecma_ext_transforms"}
|
||||||
swc_ecma_lints = {version = "0.9.0", path = "../swc_ecma_lints"}
|
swc_ecma_lints = {version = "0.9.0", path = "../swc_ecma_lints"}
|
||||||
swc_ecma_loader = {version = "0.28.0", path = "../swc_ecma_loader", features = ["lru", "node", "tsc"]}
|
swc_ecma_loader = {version = "0.28.0", path = "../swc_ecma_loader", features = ["lru", "node", "tsc"]}
|
||||||
@ -68,7 +68,7 @@ swc_ecma_transforms_compat = {version = "0.68.5", path = "../swc_ecma_transforms
|
|||||||
swc_ecma_transforms_optimization = {version = "0.84.0", path = "../swc_ecma_transforms_optimization"}
|
swc_ecma_transforms_optimization = {version = "0.84.0", path = "../swc_ecma_transforms_optimization"}
|
||||||
swc_ecma_utils = {version = "0.64.0", path = "../swc_ecma_utils"}
|
swc_ecma_utils = {version = "0.64.0", path = "../swc_ecma_utils"}
|
||||||
swc_ecma_visit = {version = "0.51.1", path = "../swc_ecma_visit"}
|
swc_ecma_visit = {version = "0.51.1", path = "../swc_ecma_visit"}
|
||||||
swc_ecmascript = {version = "0.111.0", path = "../swc_ecmascript"}
|
swc_ecmascript = {version = "0.111.1", path = "../swc_ecmascript"}
|
||||||
swc_node_comments = {version = "0.4.0", path = "../swc_node_comments"}
|
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_plugin_runner = {version = "0.30.0", path = "../swc_plugin_runner", optional = true}
|
||||||
swc_visit = {version = "0.3.0", path = "../swc_visit"}
|
swc_visit = {version = "0.3.0", path = "../swc_visit"}
|
||||||
|
@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_ecma_codegen"
|
name = "swc_ecma_codegen"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.89.0"
|
version = "0.89.1"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bitflags = "1"
|
bitflags = "1"
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_ecmascript"
|
name = "swc_ecmascript"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.111.0"
|
version = "0.111.1"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
@ -34,7 +34,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
swc_ecma_ast = {version = "0.65.3", path = "../swc_ecma_ast"}
|
swc_ecma_ast = {version = "0.65.3", path = "../swc_ecma_ast"}
|
||||||
swc_ecma_codegen = {version = "0.89.0", path = "../swc_ecma_codegen", optional = true}
|
swc_ecma_codegen = {version = "0.89.1", path = "../swc_ecma_codegen", optional = true}
|
||||||
swc_ecma_dep_graph = {version = "0.58.0", path = "../swc_ecma_dep_graph", optional = true}
|
swc_ecma_dep_graph = {version = "0.58.0", path = "../swc_ecma_dep_graph", optional = true}
|
||||||
swc_ecma_minifier = {version = "0.71.0", path = "../swc_ecma_minifier", optional = true}
|
swc_ecma_minifier = {version = "0.71.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_parser = {version = "0.87.0", path = "../swc_ecma_parser", optional = true, default-features = false}
|
||||||
|
Loading…
Reference in New Issue
Block a user