@timebyping/semantic-release-slack-bot
Version:
A slack bot for semantic-release notifying release statuses
19 lines (17 loc) • 598 B
JavaScript
/**
* Copyright © Time By Ping, Inc. 2025. All rights reserved.
*
* Any unauthorized reproduction, distribution, public display, public
* performance or derivatization thereof can constitute, among other things, an
* infringement of Time By Ping Inc.'s exclusive rights under the Copyright Law
* of the U.S. (17 U.S.C. § 106) and may subject the infringer thereof to
* severe legal liability.
*/
import fail from './lib/fail.js';
import success from './lib/success.js';
import verifyConditions from './lib/verifyConditions.js';
export default {
fail,
success,
verifyConditions,
};