create-message-kit 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,7 +3,6 @@ import { run, HandlerContext } from "@xmtp/message-kit";
3
3
  run(async (context: HandlerContext) => {
4
4
  // Get the message and the address from the sender
5
5
  const { content, sender } = context.message;
6
- console.log(content);
7
6
  // To reply, just call `reply` on the HandlerContext.
8
7
  await context.send(`gm`);
9
8
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-message-kit",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "index.js",