From 3ad0a2c00bb86b344af2037922033c96ee48f48a Mon Sep 17 00:00:00 2001 From: Kumi Date: Thu, 8 Aug 2024 07:36:46 +0200 Subject: [PATCH] chore: update .gitignore to exclude JS build artifacts Added compiled JavaScript directory to .gitignore to prevent build artifacts from being tracked in the repository. This helps keep the repo clean and reduces unnecessary clutter from generated files. --- .gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c146a03..e215121 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,7 @@ # Coingecko export data coingecko.json -coingecko-original.json \ No newline at end of file +coingecko-original.json + +# Compiled JS +/js/ \ No newline at end of file