@sapphire/plugin-logger 2.0.3-next.13bb97b.0 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -65,11 +65,11 @@ Here is an example ping command, demonstrating the use of `this.container.logger
65
65
  ```typescript
66
66
  // ping command
67
67
 
68
- import { Command, CommandOptions, PieceContext } from '@sapphire/framework';
68
+ import { Command } from '@sapphire/framework';
69
69
  import type { Message } from 'discord.js';
70
70
 
71
71
  export class PingCommand extends Command {
72
- public constructor(context: PieceContext, options: CommandOptions) {
72
+ public constructor(context: Command.Context, options: Command.Options) {
73
73
  super(context, {
74
74
  ...options,
75
75
  description: 'ping pong'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapphire/plugin-logger",
3
- "version": "2.0.3-next.13bb97b.0",
3
+ "version": "2.1.0",
4
4
  "description": "Plugin for @sapphire/framework to have pretty console output",
5
5
  "author": "@sapphire",
6
6
  "license": "MIT",
@@ -67,5 +67,5 @@
67
67
  "publishConfig": {
68
68
  "access": "public"
69
69
  },
70
- "gitHead": "13bb97bb3fcffab310a8873672dea71a152c5a4a"
70
+ "gitHead": "13f0fcd36694b09b65efb635b69f5445dd95620f"
71
71
  }