promptgraph-mcp 2.9.19 → 2.9.20

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.
Files changed (2) hide show
  1. package/indexer.js +1 -1
  2. package/package.json +1 -1
package/indexer.js CHANGED
@@ -197,7 +197,7 @@ export async function indexAll({ fast = false } = {}) {
197
197
  if (count % 200 === 0) {
198
198
  const eta = processedCount > 0 && processedStart
199
199
  ? Math.round((total - count) * (Date.now() - processedStart) / processedCount / 1000)
200
- : '?';
200
+ : Math.round((total - count) * (Date.now() - start) / count / 1000);
201
201
  progress(count, total, { skipped, eta, errors });
202
202
  }
203
203
  continue;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "promptgraph-mcp",
3
- "version": "2.9.19",
3
+ "version": "2.9.20",
4
4
  "files": [
5
5
  "*.js",
6
6
  "commands/",