From 1f6b7c2ee5e7591f0cedd08f2d40beda8aad29da Mon Sep 17 00:00:00 2001 From: Shubham Chaudhary Date: Sun, 18 Aug 2024 03:57:52 -0700 Subject: [PATCH] feat: enhance print_files script with additional webdev file extensions Updated the list of included file extensions in the print_files script to support JavaScript (js), TypeScript (ts, tsx), and CSS (css) for improved file handling capabilities. --- scripts/bin/print_files | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bin/print_files b/scripts/bin/print_files index 56c7849..825777f 100755 --- a/scripts/bin/print_files +++ b/scripts/bin/print_files @@ -31,7 +31,7 @@ copy_combined_content_to_clipboard() { } # List of file extensions to include -include_extensions=("py" "yml" "toml" "md" "txt" "Dockerfile") +include_extensions=("py" "yml" "toml" "js" "ts" "tsx" "css" "md" "txt" "Dockerfile") # Parse command line options print_content=true