@eventcatalog/notifier
Version:
CLI tool to detect EventCatalog changes and send notifications
13 lines • 433 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.processEvents = void 0;
const processEvents = async (events) => {
let notifications = [];
for (const event of events) {
const eventNotifications = await event.process();
notifications.push(...eventNotifications);
}
return notifications;
};
exports.processEvents = processEvents;
//# sourceMappingURL=processor.js.map