js-i18n-language-server 0.4.3 → 0.5.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 +18 -0
- package/README.md +10 -3
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,22 @@
|
|
|
1
1
|
|
|
2
|
+
## [0.5.0] - 2026-02-14
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
- Skip workspace activation when launched from monorepo root
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## [0.4.4] - 2026-02-14
|
|
10
|
+
|
|
11
|
+
### Documentation
|
|
12
|
+
|
|
13
|
+
- Add icon and editor extension links to README
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
- Ignore didChangeConfiguration when .js-i18n.json exists
|
|
18
|
+
|
|
19
|
+
|
|
2
20
|
## [0.4.3] - 2026-02-14
|
|
3
21
|
|
|
4
22
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -1,12 +1,19 @@
|
|
|
1
|
-
|
|
1
|
+
<div align="center">
|
|
2
|
+
<img src="docs/images/icon.png" width="128" height="128" alt="js-i18n-language-server">
|
|
3
|
+
<h1>js-i18n-language-server</h1>
|
|
4
|
+
</div>
|
|
2
5
|
|
|
3
|
-
[](https://github.com/nabekou29/js-i18n-language-server/actions/workflows/ci.yml)
|
|
4
|
-
[](https://codecov.io/gh/nabekou29/js-i18n-language-server)
|
|
6
|
+
[](LICENSE) [](https://github.com/nabekou29/js-i18n-language-server/actions/workflows/ci.yml) [](https://codecov.io/gh/nabekou29/js-i18n-language-server) [](https://github.com/nabekou29/vscode-js-i18n) [](https://github.com/nabekou29/js-i18n.nvim)
|
|
5
7
|
|
|
6
8
|
Language Server for JavaScript/TypeScript i18n libraries.
|
|
7
9
|
|
|
8
10
|
Provides IDE features (completion, hover, diagnostics, etc.) for translation keys in i18next, react-i18next, and next-intl projects.
|
|
9
11
|
|
|
12
|
+
## Editor Extensions
|
|
13
|
+
|
|
14
|
+
- <img src="https://skillicons.dev/icons?i=vscode" align="center" width="32px"/> **VS Code**: [nabekou29/vscode-js-i18n](https://github.com/nabekou29/vscode-js-i18n)
|
|
15
|
+
- <img src="https://skillicons.dev/icons?i=neovim" align="center" width="32px"/> **Neovim**: [nabekou29/js-i18n.nvim](https://github.com/nabekou29/js-i18n.nvim)
|
|
16
|
+
|
|
10
17
|
## Installation
|
|
11
18
|
|
|
12
19
|
### npm
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"name": "js-i18n-language-server",
|
|
26
|
-
"version": "0.
|
|
26
|
+
"version": "0.5.0"
|
|
27
27
|
},
|
|
28
28
|
"node_modules/@isaacs/balanced-match": {
|
|
29
29
|
"engines": {
|
|
@@ -515,5 +515,5 @@
|
|
|
515
515
|
}
|
|
516
516
|
},
|
|
517
517
|
"requires": true,
|
|
518
|
-
"version": "0.
|
|
518
|
+
"version": "0.5.0"
|
|
519
519
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/nabekou29/js-i18n-language-server/releases/download/v0.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/nabekou29/js-i18n-language-server/releases/download/v0.5.0",
|
|
3
3
|
"bin": {
|
|
4
4
|
"js-i18n-language-server": "run-js-i18n-language-server.js"
|
|
5
5
|
},
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
"zipExt": ".tar.xz"
|
|
95
95
|
}
|
|
96
96
|
},
|
|
97
|
-
"version": "0.
|
|
97
|
+
"version": "0.5.0",
|
|
98
98
|
"volta": {
|
|
99
99
|
"node": "18.14.1",
|
|
100
100
|
"npm": "9.5.0"
|