gossipcat 0.4.5 → 0.4.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-mcp/mcp-server.js +7 -0
- package/package.json +1 -1
package/dist-mcp/mcp-server.js
CHANGED
|
@@ -21617,6 +21617,13 @@ function buildAuditExclusions(projectRoot, ownWorktree) {
|
|
|
21617
21617
|
const root = canonicalize(projectRoot);
|
|
21618
21618
|
for (const v of expandTmpVariants(`${root}/.gossip`)) excl.add(v);
|
|
21619
21619
|
for (const v of expandTmpVariants(`${root}/.claude`)) excl.add(v);
|
|
21620
|
+
try {
|
|
21621
|
+
const home = canonicalize((0, import_os2.homedir)());
|
|
21622
|
+
for (const sub of ["Library", ".cache", ".npm", ".claude/projects"]) {
|
|
21623
|
+
for (const v of expandTmpVariants(`${home}/${sub}`)) excl.add(v);
|
|
21624
|
+
}
|
|
21625
|
+
} catch {
|
|
21626
|
+
}
|
|
21620
21627
|
if (ownWorktree) {
|
|
21621
21628
|
const wt = canonicalize(ownWorktree);
|
|
21622
21629
|
for (const v of expandTmpVariants(wt)) excl.add(v);
|
package/package.json
CHANGED