diff options
author | Geert-Jan Zwiers <geertjanzwiers@protonmail.com> | 2022-08-15 21:16:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-15 21:16:23 +0200 |
commit | eab66a9f4da4e166df6f2831cd0141566cd7fc45 (patch) | |
tree | fe291b91a99f86a0efd8e24b71b54e7eacaf3e89 | |
parent | 6541d03ff5586e58eb47709256724a6cf1f60030 (diff) |
chore(bench,test): list `.mts` under supported file extensions in cli docs (#15477)
-rw-r--r-- | cli/args/flags.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/args/flags.rs b/cli/args/flags.rs index f47d5b121..08b48d1d5 100644 --- a/cli/args/flags.rs +++ b/cli/args/flags.rs @@ -683,7 +683,7 @@ and report results to standard output: deno bench src/fetch_bench.ts src/signal_bench.ts Directory arguments are expanded to all contained files matching the \ -glob {*_,*.,}bench.{js,mjs,ts,jsx,tsx}: +glob {*_,*.,}bench.{js,mjs,ts,mts,jsx,tsx}: deno bench src/", ) @@ -1599,7 +1599,7 @@ report results to standard output: deno test src/fetch_test.ts src/signal_test.ts Directory arguments are expanded to all contained files matching the glob -{*_,*.,}test.{js,mjs,ts,jsx,tsx}: +{*_,*.,}test.{js,mjs,ts,mts,jsx,tsx}: deno test src/", ) |