@ts-for-gir/language-server 4.0.0-beta.37 → 4.0.0-beta.38

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ts-for-gir/language-server",
3
- "version": "4.0.0-beta.37",
3
+ "version": "4.0.0-beta.38",
4
4
  "description": "TypeScript Language Server utilities for validating generated GIR type definitions",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -28,7 +28,7 @@
28
28
  "url": "https://github.com/gjsify/ts-for-gir/issues"
29
29
  },
30
30
  "dependencies": {
31
- "@ts-for-gir/lib": "^4.0.0-beta.37",
31
+ "@ts-for-gir/lib": "^4.0.0-beta.38",
32
32
  "typescript": "^5.9.2"
33
33
  },
34
34
  "scripts": {
@@ -20,4 +20,4 @@ export interface HoverOptions {
20
20
  * Path to the directory containing GIR type definitions (@types folder)
21
21
  */
22
22
  typesPath?: string;
23
- }
23
+ }
@@ -1,3 +1,3 @@
1
- export * from "./validation.ts";
2
1
  export * from "./hover.ts";
3
- export * from "./type-expectation.ts";
2
+ export * from "./type-expectation.ts";
3
+ export * from "./validation.ts";
@@ -13,4 +13,4 @@ export interface TypeExpectationResult {
13
13
  documentation?: string;
14
14
  /** Error message if validation failed */
15
15
  error?: string;
16
- }
16
+ }
@@ -16,4 +16,4 @@ export interface ValidationOptions {
16
16
  * Path to the directory containing GIR type definitions (@types folder)
17
17
  */
18
18
  typesPath?: string;
19
- }
19
+ }