From 11c110f682eb3ae56e3da08f67cfde347a33bd94 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sun, 4 Aug 2024 13:55:51 +0300 Subject: [PATCH] Update progress script to list files --- _check_ts_progress.sh | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/_check_ts_progress.sh b/_check_ts_progress.sh index 3ff5f17e4..424760125 100755 --- a/_check_ts_progress.sh +++ b/_check_ts_progress.sh @@ -1,10 +1,13 @@ #!/usr/bin/env bash cd src/public +echo Summary +cloc HEAD \ + --git --md \ + --include-lang=javascript,typescript + +echo By file cloc HEAD \ --git --md \ --include-lang=javascript,typescript \ - --found=filelist.txt - -grep -R \.js$ filelist.txt -rm filelist.txt \ No newline at end of file + --by-file \ No newline at end of file