From 1a102074d5f56bad3c2ffad166e6e5b68681cf99 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Tue, 13 Feb 2024 20:07:51 -0700 Subject: [PATCH] Tell git to ignore the compiled files from Foundry --- .gitignore | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 4afe885..a5dbdbe 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,11 @@ node_modules/ *.bak.* references.txt .styles/ -/foundry.js \ No newline at end of file +/foundry.js + +# Ignore all of the binaries and stuff that gets built for Foundry from the raw +# JSON data because it's annoying seeing it in my git changes when it isn't actually +# needed. +/packs/**/* +!/packs/**/*/ +!/packs/**/*.json \ No newline at end of file