@sapphire/decorators 3.1.1 → 3.1.3-next.022756e1.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 CHANGED
@@ -84,6 +84,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
84
84
  <td align="center"><a href="https://github.com/nandhagk"><img src="https://avatars.githubusercontent.com/u/62976649?v=4?s=100" width="100px;" alt=""/><br /><sub><b>nandhagk</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/issues?q=author%3Anandhagk" title="Bug reports">🐛</a></td>
85
85
  <td align="center"><a href="https://megatank58.me/"><img src="https://avatars.githubusercontent.com/u/51410502?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Megatank58</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=Megatank58" title="Code">💻</a></td>
86
86
  <td align="center"><a href="https://github.com/UndiedGamer"><img src="https://avatars.githubusercontent.com/u/84702365?v=4?s=100" width="100px;" alt=""/><br /><sub><b>UndiedGamer</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=UndiedGamer" title="Code">💻</a></td>
87
+ <td align="center"><a href="https://github.com/Lioness100"><img src="https://avatars.githubusercontent.com/u/65814829?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Lioness100</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=Lioness100" title="Documentation">📖</a></td>
87
88
  </tr>
88
89
  </table>
89
90
 
@@ -13,7 +13,7 @@ import type { PieceContext, PieceOptions } from '@sapphire/framework';
13
13
  * enabled: true
14
14
  * })
15
15
  * export class UserCommand extends Command {
16
- * public async run(message: Message) {
16
+ * public async messageRun(message: Message) {
17
17
  * const msg = await message.channel.send('Ping?');
18
18
  *
19
19
  * return msg.edit(
@@ -16,7 +16,7 @@ const utils_1 = require("./utils");
16
16
  * enabled: true
17
17
  * })
18
18
  * export class UserCommand extends Command {
19
- * public async run(message: Message) {
19
+ * public async messageRun(message: Message) {
20
20
  * const msg = await message.channel.send('Ping?');
21
21
  *
22
22
  * return msg.edit(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapphire/decorators",
3
- "version": "3.1.1",
3
+ "version": "3.1.3-next.022756e1.0",
4
4
  "description": "Useful TypeScript decorators for Sapphire Framework Discord bots",
5
5
  "author": "@sapphire",
6
6
  "license": "MIT",
@@ -33,8 +33,8 @@
33
33
  "!dist/*.tsbuildinfo"
34
34
  ],
35
35
  "engines": {
36
- "node": ">=v14.18.0",
37
- "npm": ">=7.24.2"
36
+ "node": ">=v14.0.0",
37
+ "npm": ">=7.0.0"
38
38
  },
39
39
  "keywords": [
40
40
  "sapphiredev",
@@ -52,5 +52,5 @@
52
52
  "publishConfig": {
53
53
  "access": "public"
54
54
  },
55
- "gitHead": "83b2b8d9e073e2718f875a6aad53e87a4d80c7f1"
55
+ "gitHead": "022756e155e928af4e9f17a8f9fb00fa7f841ede"
56
56
  }