@wrongstack/cli 0.296.3 → 0.296.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.
|
@@ -1569,12 +1569,7 @@ function positiveNumber(value) {
|
|
|
1569
1569
|
function createTeardownEventRegistrar(events, teardownHandlers) {
|
|
1570
1570
|
return (event, handler) => {
|
|
1571
1571
|
events.on(event, handler);
|
|
1572
|
-
teardownHandlers.push(
|
|
1573
|
-
() => (
|
|
1574
|
-
// biome-ignore lint/suspicious/noExplicitAny: dynamic event dispatcher signature
|
|
1575
|
-
events.off(event, handler)
|
|
1576
|
-
)
|
|
1577
|
-
);
|
|
1572
|
+
teardownHandlers.push(() => events.off(event, handler));
|
|
1578
1573
|
};
|
|
1579
1574
|
}
|
|
1580
1575
|
async function loadOnlineAgentsForPrompt(projectDir, skip) {
|
|
@@ -29265,4 +29260,4 @@ export {
|
|
|
29265
29260
|
CLI_VERSION,
|
|
29266
29261
|
runInteractive
|
|
29267
29262
|
};
|
|
29268
|
-
//# sourceMappingURL=cli-main-
|
|
29263
|
+
//# sourceMappingURL=cli-main-TOAWVJDY.js.map
|