From 4a0c027b3a3e56e59adfef19994c1e4c519566f4 Mon Sep 17 00:00:00 2001 From: Libertocrat Date: Tue, 4 Jun 2024 17:50:28 -0600 Subject: [PATCH] Update .gitignore. Add "node_modules/" folder to ignore list Files contained in /node_modules folders are no longer committed with this .gitignore configuration. The old configuration added installed node modules, which is unnecessary and bloats the repository. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index b6e47617de..c6f36f76a5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ +# Node modules +node_modules/ + # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod]