sysml-v2-lsp 0.9.0 → 0.11.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 +43 -0
- package/dist/server/mcpServer.js +9 -3
- package/dist/server/parseWorker.js +1079 -0
- package/dist/server/server.js +11 -11
- package/index.cjs +1 -1
- package/package.json +2 -2
package/index.cjs
CHANGED
|
@@ -15,7 +15,7 @@ const path = require('path');
|
|
|
15
15
|
const serverPath = path.join(__dirname, 'dist', 'server', 'server.js');
|
|
16
16
|
|
|
17
17
|
/** Absolute path to the bundled worker module (used internally by the server). */
|
|
18
|
-
const workerPath = path.join(__dirname, 'dist', 'server', '
|
|
18
|
+
const workerPath = path.join(__dirname, 'dist', 'server', 'parseWorker.js');
|
|
19
19
|
|
|
20
20
|
/** Absolute path to the bundled MCP server entry point (stdio transport). */
|
|
21
21
|
const mcpServerPath = path.join(__dirname, 'dist', 'server', 'mcpServer.js');
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "sysml-v2-lsp",
|
|
3
3
|
"displayName": "SysML v2 Language Server",
|
|
4
4
|
"description": "Language Server Protocol implementation for SysML v2, powered by ANTLR4",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.11.0",
|
|
6
6
|
"publisher": "JamieD",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
@@ -128,4 +128,4 @@
|
|
|
128
128
|
"vscode-languageserver-textdocument": "^1.0.12",
|
|
129
129
|
"zod": "^4.3.6"
|
|
130
130
|
}
|
|
131
|
-
}
|
|
131
|
+
}
|