UNPKG

@eventcatalog/notifier

Version:

CLI tool to detect EventCatalog changes and send notifications

19 lines 589 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Event = void 0; class Event { constructor({ catalogPath, changedFiles, commitRange, options, }) { this.catalogPath = catalogPath; this.changedFiles = changedFiles; this.commitRange = commitRange || 'HEAD~1..HEAD'; this.options = options; } async process() { return []; } static getSlackMessage(config, notification, stage, actionUrl) { throw new Error('Not implemented'); } } exports.Event = Event; //# sourceMappingURL=Event.js.map