@sapphire/plugin-i18next 3.0.1-next.eb95130.0 โ 3.0.1
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 +17 -0
- package/README.md +4 -0
- package/package.json +10 -7
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
# [@sapphire/plugin-i18next@3.0.1](https://github.com/sapphiredev/plugins/compare/@sapphire/plugin-i18next@3.0.0...@sapphire/plugin-i18next@3.0.1) - (2022-10-02)
|
|
6
|
+
|
|
7
|
+
## ๐ Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **i18next:** Bump dependencies ([666b0f4](https://github.com/sapphiredev/plugins/commit/666b0f4418ead5f29ea124bb61c4c5550c33cf1d))
|
|
10
|
+
|
|
11
|
+
## ๐ Documentation
|
|
12
|
+
|
|
13
|
+
- Add @r-priyam as a contributor ([2d97019](https://github.com/sapphiredev/plugins/commit/2d970198717285c0f1652340ce87b1a4780179f3))
|
|
14
|
+
- Add @BenSegal855 as a contributor ([66553df](https://github.com/sapphiredev/plugins/commit/66553dfbb4bc7332c295277ffa4a8f720401bc89))
|
|
15
|
+
- Add @yuansheng1549 as a contributor ([c36ac65](https://github.com/sapphiredev/plugins/commit/c36ac65cd0a1a3e266a8a3679a58404177e0bb6b))
|
|
16
|
+
- Add @RealShadowNova as a contributor ([6cfa76f](https://github.com/sapphiredev/plugins/commit/6cfa76f793a16c6d11aa057e66e3fb41a9f4fb6d))
|
|
17
|
+
|
|
18
|
+
## ๐งช Testing
|
|
19
|
+
|
|
20
|
+
- Migrate to vitest ([94a182e](https://github.com/sapphiredev/plugins/commit/94a182ea0d03f79616c66983695caf64e93cb6c3))
|
|
21
|
+
|
|
5
22
|
# [@sapphire/plugin-i18next@3.0.0](https://github.com/sapphiredev/plugins/compare/@sapphire/plugin-i18next@2.5.4...@sapphire/plugin-i18next@3.0.0) - (2022-08-20)
|
|
6
23
|
|
|
7
24
|
## ๐ Refactor
|
package/README.md
CHANGED
|
@@ -208,6 +208,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
208
208
|
</tr>
|
|
209
209
|
<tr>
|
|
210
210
|
<td align="center"><a href="https://github.com/ricardooow"><img src="https://avatars.githubusercontent.com/u/28981399?v=4?s=100" width="100px;" alt=""/><br /><sub><b>ricardooow</b></sub></a><br /><a href="https://github.com/sapphiredev/plugins/commits?author=ricardooow" title="Code">๐ป</a></td>
|
|
211
|
+
<td align="center"><a href="https://shadownova.dev/"><img src="https://avatars.githubusercontent.com/u/46537907?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hezekiah Hendry</b></sub></a><br /><a href="#tool-RealShadowNova" title="Tools">๐ง</a></td>
|
|
212
|
+
<td align="center"><a href="https://github.com/yuansheng1549"><img src="https://avatars.githubusercontent.com/u/75909450?v=4?s=100" width="100px;" alt=""/><br /><sub><b>yuansheng1549</b></sub></a><br /><a href="https://github.com/sapphiredev/plugins/commits?author=yuansheng1549" title="Code">๐ป</a></td>
|
|
213
|
+
<td align="center"><a href="https://github.com/BenSegal855"><img src="https://avatars.githubusercontent.com/u/34194692?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ben</b></sub></a><br /><a href="https://github.com/sapphiredev/plugins/commits?author=BenSegal855" title="Code">๐ป</a></td>
|
|
214
|
+
<td align="center"><a href="https://github.com/r-priyam"><img src="https://avatars.githubusercontent.com/u/50884372?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Priyam</b></sub></a><br /><a href="https://github.com/sapphiredev/plugins/commits?author=r-priyam" title="Code">๐ป</a></td>
|
|
211
215
|
</tr>
|
|
212
216
|
</table>
|
|
213
217
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sapphire/plugin-i18next",
|
|
3
|
-
"version": "3.0.1
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "Plugin for @sapphire/framework to support i18next.",
|
|
5
5
|
"author": "@sapphire",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,20 +27,21 @@
|
|
|
27
27
|
],
|
|
28
28
|
"homepage": "https://github.com/sapphiredev/plugins/tree/main/packages/i18next",
|
|
29
29
|
"scripts": {
|
|
30
|
-
"test": "
|
|
30
|
+
"test": "vitest run",
|
|
31
31
|
"lint": "eslint src tests --ext ts --fix",
|
|
32
32
|
"build": "tsc -b src && yarn esm:register && yarn esm:default",
|
|
33
33
|
"esm:register": "gen-esm-wrapper dist/register.js dist/register.mjs",
|
|
34
34
|
"esm:default": "gen-esm-wrapper dist/index.js dist/index.mjs",
|
|
35
|
+
"docs": "typedoc-json-parser",
|
|
35
36
|
"prepack": "yarn build",
|
|
36
37
|
"bump": "cliff-jumper",
|
|
37
38
|
"check-update": "cliff-jumper --dry-run"
|
|
38
39
|
},
|
|
39
40
|
"dependencies": {
|
|
40
|
-
"@sapphire/utilities": "^3.
|
|
41
|
-
"@skyra/i18next-backend": "^1.0
|
|
41
|
+
"@sapphire/utilities": "^3.10.0",
|
|
42
|
+
"@skyra/i18next-backend": "^1.1.0",
|
|
42
43
|
"chokidar": "^3.5.3",
|
|
43
|
-
"i18next": "^21.9.
|
|
44
|
+
"i18next": "^21.9.2",
|
|
44
45
|
"tslib": "^2.4.0"
|
|
45
46
|
},
|
|
46
47
|
"repository": {
|
|
@@ -77,8 +78,10 @@
|
|
|
77
78
|
"access": "public"
|
|
78
79
|
},
|
|
79
80
|
"devDependencies": {
|
|
80
|
-
"@favware/cliff-jumper": "^1.8.
|
|
81
|
+
"@favware/cliff-jumper": "^1.8.8",
|
|
81
82
|
"gen-esm-wrapper": "^1.1.3",
|
|
82
|
-
"
|
|
83
|
+
"typedoc": "^0.23.15",
|
|
84
|
+
"typedoc-json-parser": "^5.0.1",
|
|
85
|
+
"typescript": "^4.8.4"
|
|
83
86
|
}
|
|
84
87
|
}
|