**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.
This commit is contained in:
David Snelling 2025-06-20 10:56:28 -07:00
parent 2e8e947adc
commit dac3258265

4
.gitignore vendored
View file

@ -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*