From df5d6aed1177dd9067a1713ce026bc3b04f8b5d1 Mon Sep 17 00:00:00 2001 From: rhysd Date: Mon, 2 Oct 2023 02:39:29 +0900 Subject: [PATCH] fix `watch-check` and `watch-test` cargo subcommands --- .cargo/config.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index ff007af..d784916 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,3 +1,3 @@ [alias] -watch-check = ["watch", "-x", "check --examples --all-features --workspace --benches --tests"] -watch-test = ["watch", "-x", "test --all-features -- --skip=src/lib.rs", "-w", "src"] +watch-check = ["watch", "-x", "check --examples --features ratatui-crossterm,search --no-default-features --tests", "-x", "check --examples --features search --tests"] +watch-test = ["watch", "-x", "test --features=search -- --skip=src/lib.rs", "-w", "src"]