From aff9de5ea37d5d34d587b96b8044d08644936524 Mon Sep 17 00:00:00 2001 From: hardfist Date: Thu, 7 Nov 2024 01:09:13 +0800 Subject: [PATCH] fix(es): Fix typo in feature name (#9721) --- .changeset/dull-donuts-learn.md | 6 ++++++ crates/swc/Cargo.toml | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 .changeset/dull-donuts-learn.md diff --git a/.changeset/dull-donuts-learn.md b/.changeset/dull-donuts-learn.md new file mode 100644 index 000000000000..4663df141bb0 --- /dev/null +++ b/.changeset/dull-donuts-learn.md @@ -0,0 +1,6 @@ +--- +swc: patch +swc_core: patch +--- + +fix(swc): fix manual-tokio-runtmie -> manual-tokio-runtime typo diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 642fa71c8179..af1e708501f1 100644 --- a/crates/swc/Cargo.toml +++ b/crates/swc/Cargo.toml @@ -48,7 +48,8 @@ plugin_transform_host_native = [ "swc_plugin_runner/plugin_transform_host_native", ] # Do not inject tokio runtime while running plugin transforms -manual-tokio-runtmie = [] +manual-tokio-runtmie = ["manual-tokio-runtime"] +manual-tokio-runtime = [] [dependencies] anyhow = { workspace = true }