@redocly/openapi-language-server 0.6.25 → 0.6.27
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/lib/index.js +41 -41
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@redocly/openapi-language-server",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.27",
|
|
4
4
|
"description": "Redocly OpenAPI language server",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"author": "Redocly LLC <team@redocly.com>",
|
|
9
9
|
"license": "SEE LICENSE IN LICENSE",
|
|
10
10
|
"peerDependencies": {
|
|
11
|
-
"@redocly/openapi-core": "2.14.
|
|
11
|
+
"@redocly/openapi-core": "2.14.5"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"@types/node": "22.18.13",
|
|
@@ -24,14 +24,14 @@
|
|
|
24
24
|
"vscode-languageserver": "^9.0.1",
|
|
25
25
|
"vscode-languageserver-textdocument": "^1.0.12",
|
|
26
26
|
"vscode-uri": "^3.1.0",
|
|
27
|
-
"@redocly/config": "0.41.
|
|
27
|
+
"@redocly/config": "0.41.2"
|
|
28
28
|
},
|
|
29
29
|
"overrides": {
|
|
30
30
|
"@redocly/config": "workspace:*"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
|
-
"build": "
|
|
34
|
-
"compile": "
|
|
33
|
+
"build": "pnpm run clean && node esbuild.cjs",
|
|
34
|
+
"compile": "pnpm run clean && tsc -p tsconfig.json",
|
|
35
35
|
"clean": "rm -rf lib",
|
|
36
36
|
"ts:check": "tsc --noEmit --skipLibCheck",
|
|
37
37
|
"test": "vitest run --pool.threads.singleThread"
|