**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:
parent
2e8e947adc
commit
dac3258265
1 changed files with 4 additions and 0 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -1,8 +1,12 @@
|
||||||
|
# Build output
|
||||||
/tmp
|
/tmp
|
||||||
/out-tsc
|
/out-tsc
|
||||||
/dist
|
/dist
|
||||||
|
/cloud-wrapper/dist
|
||||||
|
|
||||||
|
# Dependencies
|
||||||
/node_modules
|
/node_modules
|
||||||
|
/cloud-wrapper/node_modules
|
||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
yarn-error.log*
|
yarn-error.log*
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue