From dac32582655bd3d0cf2091ff73237d01ff740dc6 Mon Sep 17 00:00:00 2001 From: David Snelling Date: Fri, 20 Jun 2025 10:56:28 -0700 Subject: [PATCH] **chore: update .gitignore to include cloud-wrapper build and dependency files** ### Changes: - Added `cloud-wrapper/dist` to ignore built output. - Added `cloud-wrapper/node_modules` to ignore dependency files. ### Purpose: Updated `.gitignore` to exclude build artifacts and dependency files specific to the `cloud-wrapper`, ensuring a cleaner repository and preventing unintentional commits of these files. --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index e8ec1124..6fa7bc6f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,12 @@ +# Build output /tmp /out-tsc /dist +/cloud-wrapper/dist +# Dependencies /node_modules +/cloud-wrapper/node_modules npm-debug.log* yarn-debug.log* yarn-error.log*