js-i18n-language-server 0.4.2 → 0.4.4

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 CHANGED
@@ -1,4 +1,28 @@
1
1
 
2
+ ## [0.4.4] - 2026-02-14
3
+
4
+ ### Documentation
5
+
6
+ - Add icon and editor extension links to README
7
+
8
+ ### Features
9
+
10
+ - Ignore didChangeConfiguration when .js-i18n.json exists
11
+
12
+
13
+ ## [0.4.3] - 2026-02-14
14
+
15
+ ### Bug Fixes
16
+
17
+ - Prevent Salsa boxcar panic from stale IDs after reset_state
18
+ - Include namespace-unresolved usages in references and rename
19
+ - Skip non-file URI schemes in execute command handlers
20
+
21
+ ### Refactor
22
+
23
+ - Change default log level to info and add startup log
24
+
25
+
2
26
  ## [0.4.2] - 2026-02-12
3
27
 
4
28
  ### Bug Fixes
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 nabekou29
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,12 +1,19 @@
1
- # js-i18n-language-server
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
- [![CI](https://github.com/nabekou29/js-i18n-language-server/actions/workflows/ci.yml/badge.svg)](https://github.com/nabekou29/js-i18n-language-server/actions/workflows/ci.yml)
4
- [![codecov](https://codecov.io/gh/nabekou29/js-i18n-language-server/graph/badge.svg)](https://codecov.io/gh/nabekou29/js-i18n-language-server)
6
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE) [![CI](https://github.com/nabekou29/js-i18n-language-server/actions/workflows/ci.yml/badge.svg)](https://github.com/nabekou29/js-i18n-language-server/actions/workflows/ci.yml) [![codecov](https://codecov.io/gh/nabekou29/js-i18n-language-server/graph/badge.svg)](https://codecov.io/gh/nabekou29/js-i18n-language-server) [![VS Code](https://img.shields.io/badge/VS%20Code-007ACC?logo=visualstudiocode&logoColor=white)](https://github.com/nabekou29/vscode-js-i18n) [![Neovim](https://img.shields.io/badge/Neovim-57A143?logo=neovim&logoColor=white)](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
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT",
25
25
  "name": "js-i18n-language-server",
26
- "version": "0.4.2"
26
+ "version": "0.4.4"
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.4.2"
518
+ "version": "0.4.4"
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.4.2",
2
+ "artifactDownloadUrl": "https://github.com/nabekou29/js-i18n-language-server/releases/download/v0.4.4",
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.4.2",
97
+ "version": "0.4.4",
98
98
  "volta": {
99
99
  "node": "18.14.1",
100
100
  "npm": "9.5.0"