mirror of
https://github.com/swc-project/swc.git
synced 2024-12-24 14:16:12 +03:00
chore: Publish crates
This commit is contained in:
parent
a96217feaa
commit
a5ae6806c3
@ -62,6 +62,9 @@
|
|||||||
- **(es/lints)** Implement `no-empty-pattern` rule (#3550) ([f9fda27](https://github.com/swc-project/swc/commit/f9fda2743cb549d1af6b9bbb92155da3f60536c2))
|
- **(es/lints)** Implement `no-empty-pattern` rule (#3550) ([f9fda27](https://github.com/swc-project/swc/commit/f9fda2743cb549d1af6b9bbb92155da3f60536c2))
|
||||||
|
|
||||||
|
|
||||||
|
- **(plugin)** Add `PluginContext` (#3568) ([a96217f](https://github.com/swc-project/swc/commit/a96217feaa9fea72cf828f2ec02f0639b5dd1561))
|
||||||
|
|
||||||
|
|
||||||
- **(plugin/runner)** Improve resolver support for npm (#3566) ([d6477a7](https://github.com/swc-project/swc/commit/d6477a76cf088072f5355335f48413fbbc9310c7))
|
- **(plugin/runner)** Improve resolver support for npm (#3566) ([d6477a7](https://github.com/swc-project/swc/commit/d6477a76cf088072f5355335f48413fbbc9310c7))
|
||||||
|
|
||||||
### Miscellaneous Tasks
|
### Miscellaneous Tasks
|
||||||
|
12
Cargo.lock
generated
12
Cargo.lock
generated
@ -2598,7 +2598,7 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc"
|
name = "swc"
|
||||||
version = "0.126.2"
|
version = "0.127.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ahash",
|
"ahash",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
@ -3336,7 +3336,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_estree_compat"
|
name = "swc_estree_compat"
|
||||||
version = "0.44.0"
|
version = "0.45.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ahash",
|
"ahash",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
@ -3438,7 +3438,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_plugin"
|
name = "swc_plugin"
|
||||||
version = "0.26.1"
|
version = "0.27.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"once_cell",
|
"once_cell",
|
||||||
"swc_atoms",
|
"swc_atoms",
|
||||||
@ -3450,7 +3450,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_plugin_macro"
|
name = "swc_plugin_macro"
|
||||||
version = "0.2.1"
|
version = "0.3.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
@ -3459,7 +3459,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_plugin_runner"
|
name = "swc_plugin_runner"
|
||||||
version = "0.33.0"
|
version = "0.34.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"libloading",
|
"libloading",
|
||||||
@ -3527,7 +3527,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_webpack_ast"
|
name = "swc_webpack_ast"
|
||||||
version = "0.42.0"
|
version = "0.43.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"rayon",
|
"rayon",
|
||||||
|
@ -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.126.2"
|
version = "0.127.0"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "swc"
|
name = "swc"
|
||||||
@ -70,7 +70,7 @@ swc_ecma_utils = {version = "0.65.3", 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.114.2", path = "../swc_ecmascript"}
|
swc_ecmascript = {version = "0.114.2", 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.33.0", path = "../swc_plugin_runner", optional = true}
|
swc_plugin_runner = {version = "0.34.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"}
|
||||||
tracing = "0.1.28"
|
tracing = "0.1.28"
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_estree_compat"
|
name = "swc_estree_compat"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.44.0"
|
version = "0.45.0"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
@ -29,7 +29,7 @@ swc_node_comments = {version = "0.4.0", path = "../swc_node_comments/"}
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
pretty_assertions = "0.7.2"
|
pretty_assertions = "0.7.2"
|
||||||
swc = {version = "0.126.0", path = "../swc"}
|
swc = {version = "0.127.0", path = "../swc"}
|
||||||
swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast"}
|
swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast"}
|
||||||
swc_ecma_parser = {version = "0.88.0", path = "../swc_ecma_parser"}
|
swc_ecma_parser = {version = "0.88.0", path = "../swc_ecma_parser"}
|
||||||
swc_ecma_transforms = {version = "0.117.0", path = "../swc_ecma_transforms/"}
|
swc_ecma_transforms = {version = "0.117.0", path = "../swc_ecma_transforms/"}
|
||||||
|
@ -6,12 +6,12 @@ edition = "2018"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_plugin"
|
name = "swc_plugin"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.26.1"
|
version = "0.27.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
swc_common = {version = "0.17.0", path = "../swc_common", features = ["plugin-mode"]}
|
swc_common = {version = "0.17.0", path = "../swc_common", features = ["plugin-mode"]}
|
||||||
swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast", features = ["rkyv-impl"]}
|
swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast", features = ["rkyv-impl"]}
|
||||||
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}
|
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}
|
||||||
swc_atoms = {version = "0.2.0", path = "../swc_atoms"}
|
swc_atoms = {version = "0.2.0", path = "../swc_atoms"}
|
||||||
swc_plugin_macro = {version = "0.2.1", path = "../swc_plugin_macro"}
|
swc_plugin_macro = {version = "0.3.0", path = "../swc_plugin_macro"}
|
||||||
once_cell = "1.9.0"
|
once_cell = "1.9.0"
|
||||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_plugin_macro"
|
name = "swc_plugin_macro"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.2.1"
|
version = "0.3.0"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_plugin_runner"
|
name = "swc_plugin_runner"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.33.0"
|
version = "0.34.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.42"
|
anyhow = "1.0.42"
|
||||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_webpack_ast"
|
name = "swc_webpack_ast"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.42.0"
|
version = "0.43.0"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
@ -22,7 +22,7 @@ swc_ecma_transforms_base = {version = "0.58.0", path = "../swc_ecma_transforms_b
|
|||||||
swc_ecma_utils = {version = "0.65.0", path = "../swc_ecma_utils"}
|
swc_ecma_utils = {version = "0.65.0", path = "../swc_ecma_utils"}
|
||||||
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}
|
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}
|
||||||
swc_estree_ast = {version = "0.7.0", path = "../swc_estree_ast"}
|
swc_estree_ast = {version = "0.7.0", path = "../swc_estree_ast"}
|
||||||
swc_estree_compat = {version = "0.44.0", path = "../swc_estree_compat"}
|
swc_estree_compat = {version = "0.45.0", path = "../swc_estree_compat"}
|
||||||
swc_timer = {version = "0.4.0", path = "../swc_timer"}
|
swc_timer = {version = "0.4.0", path = "../swc_timer"}
|
||||||
tracing = "0.1.29"
|
tracing = "0.1.29"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user