We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6542279 commit 0f451f6Copy full SHA for 0f451f6
2 files changed
CHANGELOG.md
@@ -14,6 +14,10 @@
14
- Introduce `NotImplementedError` for better semantics and more meaningful error messages
15
- Init `i18nManager` in `MCPServerBooter` and `NodeCoreCLIManager` : you can remove any initialization made before executing those
16
17
+**Fixed**
18
+
19
+- Update `UCOutputBuilder` total when removing
20
21
**Misc**
22
23
- Extract server targets functions for better reusability
dist/esm/uc/helpers/UCOutputBuilder.js
@@ -51,6 +51,7 @@ export class UCOutputBuilder {
51
const idx = this.output.parts._0.items.findIndex(predicate);
52
if (idx > -1) {
53
this.output.parts._0.items.splice(idx, 1);
54
+ this.output.parts._0.total -= 1;
55
}
56
return this;
57
0 commit comments