From 07191860bec166f7e8a2a0a49a563568509e0cd5 Mon Sep 17 00:00:00 2001 From: Fazri Gading Date: Sun, 25 Jan 2026 16:13:27 +0800 Subject: [PATCH] chore: more detailed gitignore --- .gitignore | 33 +++++++++++++++++++-------------- 1 file changed, 19 insertions(+), 14 deletions(-) diff --git a/.gitignore b/.gitignore index 8c1b762..2c6b018 100644 --- a/.gitignore +++ b/.gitignore @@ -1,17 +1,22 @@ -dist/* -node_modules/* -bun.lock - -# Build artifacts -src/ -pkg/ - -# Package files -*.tar.zst -*.zst.DS_Store -*.zst -bun.lockb +# General / Node +node_modules/ +dist/ .env -# Downloaded patcher (from hytale-auth-server) +# Arch Linux / makepkg: Ignore folders created when running 'makepkg' locally +/src/ +/pkg/ + +# Built packages: {revents committing large binaries +*.pkg.tar.zst +*.pkg.tar.xz + +# Source downloads used by PKGBUILD +*.src.tar.gz + +# Project Specific: Downloaded patcher (from hytale-auth-server) backend/patcher/ + +# macOS Specific +.DS_Store +*.zst.DS_Store \ No newline at end of file