From b5e889915097c6ea0aaeaef038c4cbb30c5bb104 Mon Sep 17 00:00:00 2001 From: eliassjogreen Date: Thu, 23 Apr 2020 16:36:13 +0200 Subject: [PATCH] Updated readme to reflect new fmt and test command --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e8b2077..80e34fc 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Usage: denon [OPTIONS] [DENO_ARGS] [SCRIPT] [-- ] OPTIONS: - -c, --config A path to a config file, defaults to [default: .denonrc | .denonrc.json] + -c, --config A path to a config file, defaults to [default: .denon | denon.json | .denonrc | .denonrc.json] -d, --debug Debugging mode for more verbose logging -e, --extensions List of extensions to look for separated by commas -f, --fullscreen Clears the screen each reload @@ -29,6 +29,12 @@ OPTIONS: -q, --quiet Turns off all logging -s, --skip Glob pattern for ignoring specific files or directories -w, --watch List of paths to watch separated by commas + --fmt Adds a deno fmt executor + --test Adds a deno test executor + +COMMANDS: + fmt Alias for flag --fmt + test Alias for flag --test DENO_ARGS: Arguments passed to Deno to run SCRIPT (like permisssions) ``` @@ -70,7 +76,9 @@ Example configuration with all of the possible configuration values set to somet ".js": ["deno", "run"], ".ts": ["deno", "run"], ".py": ["python"] - } + }, + "fmt": false, + "test": true } ```