Skip to content

Commit 84060fb

Browse files
authored
fix: exclude .patchloom/ from git tracking and VSIX package (#121)
The .patchloom/backups/ directory is created by the CLI during testing and normal use. Without these exclusions: - git status shows untracked .patchloom/ for anyone running tests locally - vsce package bundles 70 backup files (8 KB) into the published VSIX Add .patchloom/ to both .gitignore and .vscodeignore. Refs #119 Signed-off-by: Sebastien Tardif <sebtardif@ncf.ca>
1 parent 3be2018 commit 84060fb

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ out-test/
44
out-uitest/
55
*.vsix
66
.vscode-test/
7+
.patchloom/
78
.DS_Store
89
.env
910
.env.*

.vscodeignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.patchloom/**
12
.vscode/**
23
.vscode-test/**
34
src/**

0 commit comments

Comments
 (0)