js-i18n-language-server 0.5.0 → 0.6.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 +25 -0
- package/README.md +10 -4
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,29 @@
|
|
|
1
1
|
|
|
2
|
+
## [0.6.1] - 2026-09-25
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
- Use bracket notation for non-identifier segments in Selector API completion (#18)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## [0.6.0] - 2026-04-04
|
|
10
|
+
|
|
11
|
+
### Documentation
|
|
12
|
+
|
|
13
|
+
- Restructure supported syntax into per-framework pages (#14)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
- Add svelte-i18n support (#6)
|
|
18
|
+
- Support i18next Selector API (`t($ => $.key)`) (#12)
|
|
19
|
+
- Add vue-i18n support (#13)
|
|
20
|
+
- Support next-intl getTranslations() server API (#15)
|
|
21
|
+
|
|
22
|
+
### Refactor
|
|
23
|
+
|
|
24
|
+
- Unify analysis pipeline, introduce I18nLibrary trait, and framework-configurable plurals (#11)
|
|
25
|
+
|
|
26
|
+
|
|
2
27
|
## [0.5.0] - 2026-02-14
|
|
3
28
|
|
|
4
29
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
Language Server for JavaScript/TypeScript i18n libraries.
|
|
9
9
|
|
|
10
|
-
Provides IDE features (completion, hover, diagnostics, etc.) for translation keys in
|
|
10
|
+
Provides IDE features (completion, hover, diagnostics, etc.) for translation keys in your i18n projects.
|
|
11
11
|
|
|
12
12
|
## Editor Extensions
|
|
13
13
|
|
|
@@ -39,9 +39,9 @@ Create `.js-i18n.json` in your project root:
|
|
|
39
39
|
```json
|
|
40
40
|
{
|
|
41
41
|
"translationFiles": {
|
|
42
|
-
"
|
|
42
|
+
"includePatterns": ["**/locales/**/*.json"]
|
|
43
43
|
},
|
|
44
|
-
"includePatterns": ["src/**/*.{ts,tsx}"],
|
|
44
|
+
"includePatterns": ["src/**/*.{ts,tsx,svelte,vue}"],
|
|
45
45
|
"excludePatterns": ["node_modules/**"]
|
|
46
46
|
}
|
|
47
47
|
```
|
|
@@ -50,7 +50,13 @@ Create `.js-i18n.json` in your project root:
|
|
|
50
50
|
|
|
51
51
|
- [Configuration Reference](./docs/configuration.md) - All configuration options
|
|
52
52
|
- [LSP Features](./docs/lsp-features.md) - Standard methods and custom commands
|
|
53
|
-
|
|
53
|
+
|
|
54
|
+
### Supported Frameworks
|
|
55
|
+
|
|
56
|
+
- [i18next / react-i18next](./docs/frameworks/i18next.md)
|
|
57
|
+
- [next-intl](./docs/frameworks/next-intl.md)
|
|
58
|
+
- [svelte-i18n](./docs/frameworks/svelte-i18n.md)
|
|
59
|
+
- [vue-i18n](./docs/frameworks/vue-i18n.md)
|
|
54
60
|
|
|
55
61
|
## License
|
|
56
62
|
|
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.6.1"
|
|
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.6.1"
|
|
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.6.1",
|
|
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.6.1",
|
|
98
98
|
"volta": {
|
|
99
99
|
"node": "18.14.1",
|
|
100
100
|
"npm": "9.5.0"
|