mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 03:01:48 +03:00
chore: Publish crates
This commit is contained in:
parent
2f3ca22ecf
commit
fc9622f779
@ -20,6 +20,9 @@
|
||||
- **(es/optimization)** Fix inlining (#3132) ([693c22a](https://github.com/swc-project/swc/commit/693c22aa93ce115aca294f61feefe4582336ada3))
|
||||
|
||||
|
||||
- **(es/parser)** Support import assertions in specifier-less imports (#3134) ([2f3ca22](https://github.com/swc-project/swc/commit/2f3ca22ecf7f567256695c39a904f02ff75e2c85))
|
||||
|
||||
|
||||
- **(es/utils)** Fix `is_valid_ident` (#3133) ([ec7e0ae](https://github.com/swc-project/swc/commit/ec7e0aee256cc7cc13f81ef22164c29f42bb43be))
|
||||
|
||||
|
||||
|
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -2547,7 +2547,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc"
|
||||
version = "0.100.2"
|
||||
version = "0.100.3"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
@ -2943,7 +2943,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_parser"
|
||||
version = "0.82.5"
|
||||
version = "0.82.6"
|
||||
dependencies = [
|
||||
"either",
|
||||
"enum_kind",
|
||||
@ -3287,7 +3287,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecmascript"
|
||||
version = "0.99.8"
|
||||
version = "0.99.9"
|
||||
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.2"
|
||||
version = "0.100.3"
|
||||
|
||||
[lib]
|
||||
name = "swc"
|
||||
@ -60,7 +60,7 @@ swc_ecma_ext_transforms = {version = "0.42.0", path = "../swc_ecma_ext_transform
|
||||
swc_ecma_lints = {version = "0.1.0", path = "../swc_ecma_lints"}
|
||||
swc_ecma_loader = {version = "0.25.3", path = "../swc_ecma_loader", features = ["lru", "node", "tsc"]}
|
||||
swc_ecma_minifier = {version = "0.60.1", path = "../swc_ecma_minifier"}
|
||||
swc_ecma_parser = {version = "0.82.0", path = "../swc_ecma_parser"}
|
||||
swc_ecma_parser = {version = "0.82.6", path = "../swc_ecma_parser"}
|
||||
swc_ecma_preset_env = {version = "0.76.2", path = "../swc_ecma_preset_env"}
|
||||
swc_ecma_transforms = {version = "0.103.8", path = "../swc_ecma_transforms", features = [
|
||||
"compat",
|
||||
@ -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.8", path = "../swc_ecmascript"}
|
||||
swc_ecmascript = {version = "0.99.9", 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"}
|
||||
|
@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "examples/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecma_parser"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.82.5"
|
||||
version = "0.82.6"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecmascript"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.99.8"
|
||||
version = "0.99.9"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -37,7 +37,7 @@ swc_ecma_ast = {version = "0.60.3", path = "../swc_ecma_ast"}
|
||||
swc_ecma_codegen = {version = "0.84.0", path = "../swc_ecma_codegen", optional = true}
|
||||
swc_ecma_dep_graph = {version = "0.52.0", path = "../swc_ecma_dep_graph", optional = true}
|
||||
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_parser = {version = "0.82.6", 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.8", path = "../swc_ecma_transforms", optional = true}
|
||||
swc_ecma_utils = {version = "0.56.0", path = "../swc_ecma_utils", optional = true}
|
||||
|
Loading…
Reference in New Issue
Block a user