@coderule/mcp 1.7.2 → 1.8.0
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-cli.cjs +12 -2
- package/dist/mcp-cli.cjs.map +1 -1
- package/dist/mcp-cli.js +12 -2
- package/dist/mcp-cli.js.map +1 -1
- package/package.json +2 -2
package/dist/mcp-cli.js
CHANGED
|
@@ -1808,9 +1808,19 @@ function formatStatus(status) {
|
|
|
1808
1808
|
` Pass 2 (Cross-Reference): ${formatDuration(timing.pass2)}`
|
|
1809
1809
|
);
|
|
1810
1810
|
}
|
|
1811
|
-
if (timing.
|
|
1811
|
+
if (timing.pass2_hdf5_compile !== void 0) {
|
|
1812
1812
|
lines.push(
|
|
1813
|
-
`
|
|
1813
|
+
` HDF5 Compilation: ${formatDuration(timing.pass2_hdf5_compile)}`
|
|
1814
|
+
);
|
|
1815
|
+
}
|
|
1816
|
+
if (timing.pass2_hdf5_dedup !== void 0) {
|
|
1817
|
+
lines.push(
|
|
1818
|
+
` HDF5 Deduplication: ${formatDuration(timing.pass2_hdf5_dedup)}`
|
|
1819
|
+
);
|
|
1820
|
+
}
|
|
1821
|
+
if (timing.pass2_hdf5_write !== void 0) {
|
|
1822
|
+
lines.push(
|
|
1823
|
+
` HDF5 Write I/O: ${formatDuration(timing.pass2_hdf5_write)}`
|
|
1814
1824
|
);
|
|
1815
1825
|
}
|
|
1816
1826
|
const totalTime = (timing.pass1 ?? 0) + (timing.gap ?? 0) + (timing.pass2 ?? 0);
|