From ca1797ef5df26a5c5484e8be69c6385c0ca38baa Mon Sep 17 00:00:00 2001 From: IWANABETHATGUY Date: Tue, 23 Jul 2024 11:38:06 +0800 Subject: [PATCH 1/3] =?UTF-8?q?fix:=20=F0=9F=90=9B=20cyclic=20dev=20depden?= =?UTF-8?q?cy=20caused=20failed=20publich?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crates/oxc_mangler/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/oxc_mangler/Cargo.toml b/crates/oxc_mangler/Cargo.toml index e5717b71d7068..eb5da1833e5b2 100644 --- a/crates/oxc_mangler/Cargo.toml +++ b/crates/oxc_mangler/Cargo.toml @@ -28,7 +28,7 @@ oxc_index = { workspace = true } itertools = { workspace = true } [dev-dependencies] -oxc_codegen = { workspace = true } +oxc_codegen = { path = "../oxc_codegen" } oxc_parser = { workspace = true } oxc_span = { workspace = true } oxc_allocator = { workspace = true } From 89e037b231f75451e7152daf6b81e649fde2bd7c Mon Sep 17 00:00:00 2001 From: IWANABETHATGUY Date: Tue, 23 Jul 2024 11:40:33 +0800 Subject: [PATCH 2/3] =?UTF-8?q?chore:=20=F0=9F=A4=96=20add=20doc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crates/oxc_mangler/Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/oxc_mangler/Cargo.toml b/crates/oxc_mangler/Cargo.toml index eb5da1833e5b2..6e520a3ecc8cd 100644 --- a/crates/oxc_mangler/Cargo.toml +++ b/crates/oxc_mangler/Cargo.toml @@ -28,6 +28,8 @@ oxc_index = { workspace = true } itertools = { workspace = true } [dev-dependencies] +# Workaround for https://github.com/rust-lang/cargo/issues/4242 +# ref: https://github.com/rust-lang/futures-rs/pull/2305 oxc_codegen = { path = "../oxc_codegen" } oxc_parser = { workspace = true } oxc_span = { workspace = true } From 3c65e6679c49ddab62f2663b71d72ec75a2b9960 Mon Sep 17 00:00:00 2001 From: IWANABETHATGUY Date: Tue, 23 Jul 2024 11:45:13 +0800 Subject: [PATCH 3/3] =?UTF-8?q?chore:=20=F0=9F=A4=96=20comments?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crates/oxc_mangler/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/oxc_mangler/Cargo.toml b/crates/oxc_mangler/Cargo.toml index 6e520a3ecc8cd..b808906b9a024 100644 --- a/crates/oxc_mangler/Cargo.toml +++ b/crates/oxc_mangler/Cargo.toml @@ -28,7 +28,7 @@ oxc_index = { workspace = true } itertools = { workspace = true } [dev-dependencies] -# Workaround for https://github.com/rust-lang/cargo/issues/4242 +# Using `path` instead of `workspace = true` Workaround for https://github.com/rust-lang/cargo/issues/4242 # ref: https://github.com/rust-lang/futures-rs/pull/2305 oxc_codegen = { path = "../oxc_codegen" } oxc_parser = { workspace = true }