Skip to content

Commit

Permalink
feat: enhance print_files script with additional webdev file extensions
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ylogx committed Aug 18, 2024
1 parent f66a4de commit 1f6b7c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/bin/print_files
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1f6b7c2

Please sign in to comment.