From ab656cdb8835ceaa677cc3c8c5d0b1690ac3fdfc Mon Sep 17 00:00:00 2001 From: LingyuCoder Date: Fri, 16 Aug 2024 15:33:52 +0800 Subject: [PATCH] feat: support optimization.emitOnErrors --- Cargo.lock | 1 - crates/rspack_plugin_no_emit_on_errors/Cargo.toml | 9 ++++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5f0dcde8903d..41e7ed739f75 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3677,7 +3677,6 @@ dependencies = [ name = "rspack_plugin_no_emit_on_errors" version = "0.1.0" dependencies = [ - "rspack_collections", "rspack_core", "rspack_error", "rspack_hook", diff --git a/crates/rspack_plugin_no_emit_on_errors/Cargo.toml b/crates/rspack_plugin_no_emit_on_errors/Cargo.toml index 2c568fb099ac..b023af50afee 100644 --- a/crates/rspack_plugin_no_emit_on_errors/Cargo.toml +++ b/crates/rspack_plugin_no_emit_on_errors/Cargo.toml @@ -8,11 +8,10 @@ version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -rspack_collections = { version = "0.1.0", path = "../rspack_collections" } -rspack_core = { version = "0.1.0", path = "../rspack_core" } -rspack_error = { version = "0.1.0", path = "../rspack_error" } -rspack_hook = { version = "0.1.0", path = "../rspack_hook" } -tracing = { workspace = true } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +tracing = { workspace = true } [package.metadata.cargo-shear] ignored = ["tracing"]