@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.
- package/README.md +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
|
|
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:
|
|
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.
|
|
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": "
|
|
70
|
+
"gitHead": "13f0fcd36694b09b65efb635b69f5445dd95620f"
|
|
71
71
|
}
|