From 059d07f050d33f75bc7f409ca2bee67ad3666eb7 Mon Sep 17 00:00:00 2001 From: Aaron Teo <57927438+taronaeo@users.noreply.github.com> Date: Tue, 23 May 2023 11:41:06 +0800 Subject: [PATCH 1/4] Update Node.gitignore 1. SvelteKit - added ignore for cache directory 2. .env.example - included for documentation 3. Vite - added ignore for log files 4. Firebase - added ignore for cache directory --- Node.gitignore | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Node.gitignore b/Node.gitignore index c6bba591..5900cb63 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -78,6 +78,7 @@ web_modules/ .env.test.local .env.production.local .env.local +!.env.example # parcel-bundler cache (https://parceljs.org/) .cache @@ -104,6 +105,9 @@ dist .temp .cache +# Sveltekit cache directory +.svelte-kit + # Docusaurus cache and generated files .docusaurus @@ -116,6 +120,9 @@ dist # DynamoDB Local files .dynamodb/ +# Firebase cache directory +.firebase + # TernJS port file .tern-port @@ -128,3 +135,7 @@ dist .yarn/build-state.yml .yarn/install-state.gz .pnp.* + +# Vite logs files +vite.config.js.timestamp-* +vite.config.ts.timestamp-* From a2d805bcd3bc00271c47187a57edb858e0816282 Mon Sep 17 00:00:00 2001 From: Aaron Teo Date: Thu, 26 Jun 2025 21:04:44 +0800 Subject: [PATCH 2/4] chore: add trailing slash to svelte-kit Co-authored-by: Devin Dooley --- Node.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Node.gitignore b/Node.gitignore index 197b1480..dc364c2e 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -99,7 +99,7 @@ dist .cache # Sveltekit cache directory -.svelte-kit +.svelte-kit/ # vitepress build output **/.vitepress/dist From 8c5178ac3ad64955915bea935799796ae7b35f41 Mon Sep 17 00:00:00 2001 From: Aaron Teo Date: Thu, 26 Jun 2025 21:04:59 +0800 Subject: [PATCH 3/4] chore: add trailing-slash to firebase Co-authored-by: Devin Dooley --- Node.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Node.gitignore b/Node.gitignore index dc364c2e..092fe481 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -120,7 +120,7 @@ dist .dynamodb/ # Firebase cache directory -.firebase +.firebase/ # TernJS port file .tern-port From de28afe56c20c1adbbf88ec129db63ea91317bd8 Mon Sep 17 00:00:00 2001 From: Aaron Teo Date: Fri, 27 Jun 2025 00:55:10 +0800 Subject: [PATCH 4/4] chore: revert .env.* changes --- Node.gitignore | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Node.gitignore b/Node.gitignore index 092fe481..9a5acedf 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -67,10 +67,7 @@ web_modules/ # dotenv environment variable files .env -.env.development.local -.env.test.local -.env.production.local -.env.local +.env.* !.env.example # parcel-bundler cache (https://parceljs.org/)