nstantpage-agent 0.8.3 → 0.8.4
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/agentSync.js +8 -6
- package/package.json +1 -1
package/dist/agentSync.js
CHANGED
|
@@ -43,7 +43,7 @@ const TEMPLATE_SCAFFOLD_FILES = new Set([
|
|
|
43
43
|
]);
|
|
44
44
|
function shouldSkip(name, isDir) {
|
|
45
45
|
if (isDir)
|
|
46
|
-
return SKIP_DIRS.has(name);
|
|
46
|
+
return SKIP_DIRS.has(name) || name.startsWith('.');
|
|
47
47
|
if (SKIP_FILES.has(name))
|
|
48
48
|
return true;
|
|
49
49
|
if (name.startsWith('.'))
|
|
@@ -110,7 +110,7 @@ export class AgentSync {
|
|
|
110
110
|
if (!filename || selfWriting)
|
|
111
111
|
return;
|
|
112
112
|
const parts = filename.split(path.sep);
|
|
113
|
-
if (parts.some(p => SKIP_DIRS.has(p)))
|
|
113
|
+
if (parts.some(p => SKIP_DIRS.has(p) || (p.startsWith('.') && p !== '.')))
|
|
114
114
|
return;
|
|
115
115
|
const basename = path.basename(filename);
|
|
116
116
|
if (shouldSkip(basename, false))
|
|
@@ -278,9 +278,9 @@ export class AgentSync {
|
|
|
278
278
|
continue;
|
|
279
279
|
if (SKIP_EXTENSIONS.has(ext))
|
|
280
280
|
continue;
|
|
281
|
-
// Match disk scan: skip files inside SKIP_DIRS directories
|
|
281
|
+
// Match disk scan: skip files inside SKIP_DIRS or dotfile directories
|
|
282
282
|
const parts = filePath.split('/');
|
|
283
|
-
if (parts.some(p => SKIP_DIRS.has(p)))
|
|
283
|
+
if (parts.some(p => SKIP_DIRS.has(p) || (p.startsWith('.') && p !== '.')))
|
|
284
284
|
continue;
|
|
285
285
|
// Match disk scan: skip dist/ and build/ top-level paths
|
|
286
286
|
if (filePath.startsWith('dist/') || filePath.startsWith('build/'))
|
|
@@ -457,7 +457,9 @@ export class AgentSync {
|
|
|
457
457
|
const deleted = [];
|
|
458
458
|
if (!backendResult)
|
|
459
459
|
return { modified, added, deleted };
|
|
460
|
-
|
|
460
|
+
// Use filtered backend checksums so dotfile dirs (.angular etc) and skip patterns are excluded
|
|
461
|
+
const filteredBackend = this.filterBackendChecksums(backendResult.checksums);
|
|
462
|
+
for (const [filePath, backendSha] of filteredBackend) {
|
|
461
463
|
const diskSha = diskData.checksums.get(filePath);
|
|
462
464
|
if (!diskSha) {
|
|
463
465
|
deleted.push(filePath);
|
|
@@ -469,7 +471,7 @@ export class AgentSync {
|
|
|
469
471
|
}
|
|
470
472
|
}
|
|
471
473
|
for (const [filePath] of diskData.checksums) {
|
|
472
|
-
if (!
|
|
474
|
+
if (!filteredBackend.has(filePath) && isUserCreatedFile(filePath)) {
|
|
473
475
|
if (this.syncedBaselineChecksums) {
|
|
474
476
|
const baselineSha = this.syncedBaselineChecksums.get(filePath);
|
|
475
477
|
if (baselineSha && baselineSha === diskData.checksums.get(filePath)) {
|
package/package.json
CHANGED