Skip to content

Commit

Permalink
feat(plugin-common): remove likeme
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Jan 16, 2020
1 parent 0497a9a commit 87be3c1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 26 deletions.
5 changes: 0 additions & 5 deletions packages/plugin-common/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import echo from './echo'
import exit from './exit'
import help from './help'
import info from './info'
import likeme, { LikemeOptions } from './likeme'
import repeater, { RepeaterOptions } from './repeater'
import requestHandler, { HandlerConfig } from './request-handler'
import respondent, { Respondent } from './respondent'
Expand All @@ -27,7 +26,6 @@ export {
exit,
help,
info,
likeme,
repeater,
requestHandler,
respondent,
Expand All @@ -43,8 +41,6 @@ interface CommonPluginConfig extends HandlerConfig, AuthorizeConfig {
exit?: false | CommandConfig
help?: false | CommandConfig
info?: false | CommandConfig
likeme?: false | LikemeOptions
rank?: false | CommandConfig
repeater?: false | RepeaterOptions
respondent?: Respondent[]
welcome?: false | WelcomeMessage
Expand All @@ -58,7 +54,6 @@ export function apply (ctx: Context, options: CommonPluginConfig = {}) {
.plugin(echo, options.echo)
.plugin(exit, options.exit)
.plugin(help, options.help)
.plugin(likeme, options.likeme)
.plugin(repeater, options.repeater)
.plugin(requestHandler, options)
.plugin(respondent, options.respondent)
Expand Down
21 changes: 0 additions & 21 deletions packages/plugin-common/src/likeme.ts

This file was deleted.

0 comments on commit 87be3c1

Please sign in to comment.