Skip to content

Commit

Permalink
patch: fix typos and update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
juni-b-queer committed Dec 12, 2024
1 parent f21a04d commit 3930c06
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion templates/default/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"typescript": "^5.0.0"
},
"dependencies": {
"bsky-event-handlers": "^2.0.0",
"bsky-event-handlers": "^2.0.1",
"@atproto/api": "^0.13.19"
},
"license": "{{license}}"
Expand Down
5 changes: 2 additions & 3 deletions templates/default/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import {
BadBotHandler,
CreateSkeetHandler,
DebugLog,
GoodBotHandler,
HandlerAgent,
Expand Down Expand Up @@ -31,8 +30,8 @@ let handlers = {
post: {
c: [
new MessageHandler(
[ReplyingToBotValidator().make(), InputEqualsValidator("Hello").make()],
[LogMessageAction().make(), CreateSkeetAction.make('World!', MessageHandler.generateReplyFromMessage)],
[ReplyingToBotValidator.make(), InputEqualsValidator.make("Hello")],
[LogMessageAction.make(), CreateSkeetAction.make('World!', MessageHandler.generateReplyFromMessage)],
testAgent
),
new GoodBotHandler(testAgent),
Expand Down
2 changes: 1 addition & 1 deletion templates/interval/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"typescript": "^5.0.0"
},
"dependencies": {
"bsky-event-handlers": "^2.0.0",
"bsky-event-handlers": "^2.0.1",
"@atproto/api": "^0.13.19"
},
"license": "{{license}}"
Expand Down
2 changes: 1 addition & 1 deletion templates/jetstream/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"typescript": "^5.0.0"
},
"dependencies": {
"bsky-event-handlers": "^2.0.0",
"bsky-event-handlers": "^2.0.1",
"@atproto/api": "^0.13.19"
},
"license": "{{license}}"
Expand Down
4 changes: 2 additions & 2 deletions templates/jetstream/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ let handlers = {
post: {
c: [
new MessageHandler(
[ReplyingToBotValidator().make(), InputEqualsValidator("Hello").make()],
[LogMessageAction().make(), CreateSkeetAction.make('World!', MessageHandler.generateReplyFromMessage)],
[ReplyingToBotValidator.make(), InputEqualsValidator.make("Hello")],
[LogMessageAction.make(), CreateSkeetAction.make('World!', MessageHandler.generateReplyFromMessage)],
testAgent
),
new GoodBotHandler(testAgent),
Expand Down

0 comments on commit 3930c06

Please sign in to comment.