typescript-language-server 4.1.3 → 4.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 +24 -0
- package/README.md +12 -10
- package/lib/cli.mjs +419 -524
- package/lib/cli.mjs.map +1 -1
- package/package.json +19 -27
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,30 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
|
+
## [4.3.0](https://github.com/typescript-language-server/typescript-language-server/compare/v4.2.0...v4.3.0) (2024-01-08)
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* support specifying language IDs in plugins ([#834](https://github.com/typescript-language-server/typescript-language-server/issues/834)) ([e9c0b11](https://github.com/typescript-language-server/typescript-language-server/commit/e9c0b117a9a5e273eb517dc0d337ecdf973f3dac))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* avoid sending window/workDoneProgress/create before init ([#846](https://github.com/typescript-language-server/typescript-language-server/issues/846)) ([625048f](https://github.com/typescript-language-server/typescript-language-server/commit/625048fac8533bccdeda82ee140d4f7792d9fb04))
|
|
15
|
+
|
|
16
|
+
## [4.2.0](https://github.com/typescript-language-server/typescript-language-server/compare/v4.1.3...v4.2.0) (2023-12-09)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
* add tsserver.fallbackPath to initialization options ([#831](https://github.com/typescript-language-server/typescript-language-server/issues/831)) ([9253dd8](https://github.com/typescript-language-server/typescript-language-server/commit/9253dd8eb9ba8b0d8dcfb5fbe1533e7609c040d4))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
* **deps:** update devdependency typescript to ^5.3.3 ([#832](https://github.com/typescript-language-server/typescript-language-server/issues/832)) ([9e1744c](https://github.com/typescript-language-server/typescript-language-server/commit/9e1744c1dea0493ce76b8cce8a55e2d514b9250b))
|
|
27
|
+
|
|
4
28
|
## [4.1.3](https://github.com/typescript-language-server/typescript-language-server/compare/v4.1.2...v4.1.3) (2023-11-27)
|
|
5
29
|
|
|
6
30
|
|
package/README.md
CHANGED
|
@@ -31,8 +31,8 @@ Maintained by a [community of contributors](https://github.com/typescript-langua
|
|
|
31
31
|
- [TypeScript Version Notification](#typescript-version-notification)
|
|
32
32
|
- [Development](#development)
|
|
33
33
|
- [Build](#build)
|
|
34
|
+
- [Dev](#dev)
|
|
34
35
|
- [Test](#test)
|
|
35
|
-
- [Watch](#watch)
|
|
36
36
|
- [Publishing](#publishing)
|
|
37
37
|
|
|
38
38
|
<!-- /MarkdownTOC -->
|
|
@@ -277,22 +277,24 @@ The `$/typescriptVersion` notification params include two properties:
|
|
|
277
277
|
### Build
|
|
278
278
|
|
|
279
279
|
```sh
|
|
280
|
-
yarn
|
|
280
|
+
yarn build
|
|
281
281
|
```
|
|
282
282
|
|
|
283
|
-
###
|
|
284
|
-
|
|
285
|
-
- `yarn test` - run all tests
|
|
286
|
-
- `yarn test:watch` - run all tests and enable watch mode for developing
|
|
283
|
+
### Dev
|
|
287
284
|
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
### Watch
|
|
285
|
+
Build and rebuild on change.
|
|
291
286
|
|
|
292
287
|
```sh
|
|
293
|
-
yarn
|
|
288
|
+
yarn dev
|
|
294
289
|
```
|
|
295
290
|
|
|
291
|
+
### Test
|
|
292
|
+
|
|
293
|
+
- `yarn test` - run all tests in watch mode for developing
|
|
294
|
+
- `yarn test:commit` - run all tests once
|
|
295
|
+
|
|
296
|
+
By default only console logs of level `warning` and higher are printed to the console. You can override the `CONSOLE_LOG_LEVEL` level in `package.json` to either `log`, `info`, `warning` or `error` to log other levels.
|
|
297
|
+
|
|
296
298
|
### Publishing
|
|
297
299
|
|
|
298
300
|
The project uses https://github.com/google-github-actions/release-please-action Github action to automatically release new version on merging a release PR.
|