@likec4/language-services 1.48.0 → 1.49.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.
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { Logger } from "@likec4/log";
|
|
2
|
-
import * as vscode_uri0 from "vscode-uri";
|
|
3
2
|
import { LikeC4Model } from "@likec4/core/model";
|
|
4
3
|
import { LayoutedView, NonEmptyArray, ProjectId } from "@likec4/core/types";
|
|
5
4
|
import { LikeC4LanguageServices, LikeC4ModelBuilder, LikeC4Services, LikeC4SharedServices, LikeC4Views, ProjectsManager } from "@likec4/language-server";
|
|
@@ -16,15 +15,15 @@ declare class LikeC4 {
|
|
|
16
15
|
/**
|
|
17
16
|
* File system path to the workspace root
|
|
18
17
|
*/
|
|
19
|
-
get workspace():
|
|
18
|
+
get workspace(): any;
|
|
20
19
|
/**
|
|
21
20
|
* URI of the workspace root
|
|
22
21
|
*/
|
|
23
|
-
get workspaceURI():
|
|
22
|
+
get workspaceURI(): any;
|
|
24
23
|
/**
|
|
25
24
|
* URL of the workspace root
|
|
26
25
|
*/
|
|
27
|
-
get workspaceURL():
|
|
26
|
+
get workspaceURL(): any;
|
|
28
27
|
get languageServices(): LikeC4LanguageServices;
|
|
29
28
|
get projectsManager(): ProjectsManager;
|
|
30
29
|
get viewsService(): LikeC4Views;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@likec4/language-services",
|
|
3
3
|
"description": "LikeC4 Language Services",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.49.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"bugs": "https://github.com/likec4/likec4/issues",
|
|
7
7
|
"homepage": "https://likec4.dev",
|
|
@@ -77,13 +77,13 @@
|
|
|
77
77
|
"std-env": "^3.10.0",
|
|
78
78
|
"type-fest": "^4.41.0",
|
|
79
79
|
"vscode-languageserver-types": "3.17.5",
|
|
80
|
-
"@likec4/config": "1.
|
|
81
|
-
"@likec4/
|
|
82
|
-
"@likec4/generators": "1.48.0",
|
|
80
|
+
"@likec4/config": "1.49.0",
|
|
81
|
+
"@likec4/generators": "1.49.0",
|
|
83
82
|
"@likec4/icons": "1.46.4",
|
|
84
|
-
"@likec4/
|
|
85
|
-
"@likec4/
|
|
86
|
-
"@likec4/
|
|
83
|
+
"@likec4/core": "1.49.0",
|
|
84
|
+
"@likec4/language-server": "1.49.0",
|
|
85
|
+
"@likec4/layouts": "1.49.0",
|
|
86
|
+
"@likec4/log": "1.49.0"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
89
|
"@types/node": "~22.19.10",
|
|
@@ -93,8 +93,8 @@
|
|
|
93
93
|
"turbo": "2.8.3",
|
|
94
94
|
"typescript": "5.9.3",
|
|
95
95
|
"vitest": "4.0.18",
|
|
96
|
-
"@likec4/
|
|
97
|
-
"@likec4/
|
|
96
|
+
"@likec4/devops": "1.42.0",
|
|
97
|
+
"@likec4/tsconfig": "1.49.0"
|
|
98
98
|
},
|
|
99
99
|
"scripts": {
|
|
100
100
|
"typecheck": "tsc -b --verbose",
|