gitnexus 1.3.1 → 1.3.3
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/cli/analyze.js
CHANGED
|
@@ -298,12 +298,13 @@ export const analyzeCommand = async (inputPath, options) => {
|
|
|
298
298
|
if (hookResult.registered) {
|
|
299
299
|
console.log(` Hooks: ${hookResult.message}`);
|
|
300
300
|
}
|
|
301
|
-
// Show
|
|
301
|
+
// Show a quiet summary if some edge types needed fallback insertion
|
|
302
302
|
if (kuzuWarnings.length > 0) {
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
}
|
|
303
|
+
const totalFallback = kuzuWarnings.reduce((sum, w) => {
|
|
304
|
+
const m = w.match(/\((\d+) edges\)/);
|
|
305
|
+
return sum + (m ? parseInt(m[1]) : 0);
|
|
306
|
+
}, 0);
|
|
307
|
+
console.log(` Note: ${totalFallback} edges across ${kuzuWarnings.length} types inserted via fallback (schema will be updated in next release)`);
|
|
307
308
|
}
|
|
308
309
|
try {
|
|
309
310
|
await fs.access(getGlobalRegistryPath());
|
|
@@ -42,7 +42,7 @@ export const walkRepositoryPaths = async (repoPath, onProgress) => {
|
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
if (skippedLarge > 0) {
|
|
45
|
-
console.warn(` Skipped ${skippedLarge} files
|
|
45
|
+
console.warn(` Skipped ${skippedLarge} large files (>${MAX_FILE_SIZE / 1024}KB, likely generated/vendored)`);
|
|
46
46
|
}
|
|
47
47
|
return entries;
|
|
48
48
|
};
|
package/package.json
CHANGED