From 2baf418ab6f8c4cc5073d71dc9a628c43f1a0165 Mon Sep 17 00:00:00 2001 From: Boshen Date: Fri, 8 Dec 2023 11:43:10 +0800 Subject: [PATCH] fix(justfile): fix example command --- justfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/justfile b/justfile index 7b85fe8..99d0b06 100644 --- a/justfile +++ b/justfile @@ -26,11 +26,11 @@ ready: # use .ignore file getting the ignore list # Run `cargo watch` watch command: - cargo watch --no-vcs-ignores -i '*snap*' -x '{{command}}' + cargo watch -x '{{command}}' # Run the example in `parser`, `formatter`, `linter` -example tool *args='': - just watch 'run -p oxc_{{tool}} --example {{tool}} -- {{args}}' +example *args='': + just watch 'run --example resolver -- {{args}}' # Format all files fmt: