-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat!: hubot 11 support and rewrite to ESM
hubot 11 requires adapters to be written in ESM (hubotio/hubot#1699)
- Loading branch information
1 parent
225d750
commit ca70a7f
Showing
20 changed files
with
543 additions
and
336 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,11 @@ | ||
const Joined = require("./Joined") | ||
const Left = require("./Left") | ||
const MessageCreated = require("./MessageCreated") | ||
const DirectMessageCreated = require("./DirectMessageCreated") | ||
const ChannelCreated = require("./ChannelCreated") | ||
const ChannelTopicChanged = require("./ChannelTopicChanged") | ||
const UserCreated = require("./UserCreated") | ||
const StampCreated = require("./StampCreated") | ||
const TagAdded = require("./TagAdded") | ||
const TagRemoved = require("./TagRemoved") | ||
const BotMessageStampsUpdated = require("./BotMessageStampsUpdated") | ||
|
||
module.exports = { | ||
Joined, | ||
Left, | ||
MessageCreated, | ||
DirectMessageCreated, | ||
ChannelCreated, | ||
ChannelTopicChanged, | ||
UserCreated, | ||
StampCreated, | ||
TagAdded, | ||
TagRemoved, | ||
BotMessageStampsUpdated | ||
} | ||
export { default as Joined } from "./Joined.js" | ||
export { default as Left } from "./Left.js" | ||
export { default as MessageCreated } from "./MessageCreated.js" | ||
export { default as DirectMessageCreated } from "./DirectMessageCreated.js" | ||
export { default as ChannelCreated } from "./ChannelCreated.js" | ||
export { default as ChannelTopicChanged } from "./ChannelTopicChanged.js" | ||
export { default as UserCreated } from "./UserCreated.js" | ||
export { default as StampCreated } from "./StampCreated.js" | ||
export { default as TagAdded } from "./TagAdded.js" | ||
export { default as TagRemoved } from "./TagRemoved.js" | ||
export { default as BotMessageStampsUpdated } from "./BotMessageStampsUpdated.js" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters