@discordjs/formatters 0.3.0-dev.1680307826-34bc36a.0 → 0.3.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/CHANGELOG.md +10 -0
- package/README.md +4 -4
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
# [@discordjs/formatters@0.3.0](https://github.com/discordjs/discord.js/compare/@discordjs/formatters@0.2.0...@discordjs/formatters@0.3.0) - (2023-04-01)
|
|
6
|
+
|
|
7
|
+
## Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **scripts:** Accessing tsComment ([d8d5f31](https://github.com/discordjs/discord.js/commit/d8d5f31d3927fd1de62f1fa3a1a6e454243ad87b))
|
|
10
|
+
|
|
11
|
+
## Features
|
|
12
|
+
|
|
13
|
+
- **website:** Render syntax and mdx on the server (#9086) ([ee5169e](https://github.com/discordjs/discord.js/commit/ee5169e0aadd7bbfcd752aae614ec0f69602b68b))
|
|
14
|
+
|
|
5
15
|
# [@discordjs/formatters@0.2.0](https://github.com/discordjs/discord.js/compare/@discordjs/formatters@0.1.0...@discordjs/formatters@0.2.0) - (2023-03-12)
|
|
6
16
|
|
|
7
17
|
## Features
|
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
## About
|
|
20
20
|
|
|
21
|
-
`@discordjs/formatters`
|
|
21
|
+
`@discordjs/formatters` is a collection of functions for formatting strings to be used on Discord.
|
|
22
22
|
|
|
23
23
|
## Installation
|
|
24
24
|
|
|
@@ -49,7 +49,7 @@ console.log(formattedCode);
|
|
|
49
49
|
- [Website][website] ([source][website-source])
|
|
50
50
|
- [Documentation][documentation]
|
|
51
51
|
- [Guide][guide] ([source][guide-source])
|
|
52
|
-
|
|
52
|
+
Also see the v13 to v14 [Update Guide][guide-update], which includes updated and removed items from the library.
|
|
53
53
|
- [discord.js Discord server][discord]
|
|
54
54
|
- [Discord API Discord server][discord-api]
|
|
55
55
|
- [GitHub][source]
|
|
@@ -66,9 +66,9 @@ See [the contribution guide][contributing] if you'd like to submit a PR.
|
|
|
66
66
|
|
|
67
67
|
If you don't understand something in the documentation, you are experiencing problems, or you just need a gentle nudge in the right direction, please don't hesitate to join our official [discord.js Server][discord].
|
|
68
68
|
|
|
69
|
-
[website]: https://discord.js.org
|
|
69
|
+
[website]: https://discord.js.org
|
|
70
70
|
[website-source]: https://github.com/discordjs/discord.js/tree/main/apps/website
|
|
71
|
-
[documentation]: https://discord.js.org/
|
|
71
|
+
[documentation]: https://discord.js.org/docs/packages/formatters/stable
|
|
72
72
|
[guide]: https://discordjs.guide/
|
|
73
73
|
[guide-source]: https://github.com/discordjs/guide
|
|
74
74
|
[guide-update]: https://discordjs.guide/additional-info/changes-in-v14.html
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@discordjs/formatters",
|
|
3
|
-
"version": "0.3.0
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "A set of functions to format strings for Discord.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "vitest run",
|
|
@@ -50,15 +50,15 @@
|
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@favware/cliff-jumper": "^2.0.0",
|
|
52
52
|
"@microsoft/api-extractor": "^7.34.4",
|
|
53
|
-
"@types/node": "16.18.
|
|
53
|
+
"@types/node": "16.18.23",
|
|
54
54
|
"@vitest/coverage-c8": "^0.29.8",
|
|
55
55
|
"cross-env": "^7.0.3",
|
|
56
|
-
"eslint": "^8.
|
|
56
|
+
"eslint": "^8.37.0",
|
|
57
57
|
"eslint-config-neon": "^0.1.41",
|
|
58
58
|
"eslint-formatter-pretty": "^5.0.0",
|
|
59
59
|
"prettier": "^2.8.7",
|
|
60
60
|
"tsup": "^6.7.0",
|
|
61
|
-
"typescript": "^5.0.
|
|
61
|
+
"typescript": "^5.0.3",
|
|
62
62
|
"vitest": "^0.29.8"
|
|
63
63
|
},
|
|
64
64
|
"engines": {
|