sysml-v2-lsp 0.1.1 → 0.1.2
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 +27 -1
- package/README.md +3 -3
- package/dist/server/mcpServer.mjs +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,32 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [
|
|
3
|
+
## [0.1.2]
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Release checklist (`.github/RELEASE_CHECKLIST.md`)
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- Remove unused `antlr4-c3` dependency from server package
|
|
12
|
+
- Fix client extension server path to use bundled `dist/` output (VSIX was broken)
|
|
13
|
+
- Fix `postinstall` script silently swallowing server install failures
|
|
14
|
+
- Sync versions across `server/package.json`, `client/package.json`, and MCP server to `0.1.1`
|
|
15
|
+
- Align Node engine requirement to `>=20` in `server/package.json` (was `>=18`)
|
|
16
|
+
- Update esbuild target from `node18` to `node20`
|
|
17
|
+
- Add `*.tgz` to `.gitignore` to prevent accidental commits
|
|
18
|
+
- Add explicit `require`/`default` conditions to `exports` field
|
|
19
|
+
- Remove redundant `activationEvents` (auto-generated from `contributes.languages`)
|
|
20
|
+
|
|
21
|
+
## [0.1.1]
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- Update postinstall script to handle missing `client` directory gracefully
|
|
26
|
+
- Add npm trusted publishing (OIDC) support and normalize repository URL
|
|
27
|
+
- Remove accidentally committed `.tgz` archive
|
|
28
|
+
- Skip `npm version` in release workflow when git tag already matches `package.json`
|
|
29
|
+
- Drop Node 18 from CI matrix (Vite 7 requires Node 20+)
|
|
4
30
|
|
|
5
31
|
## [0.1.0]
|
|
6
32
|
|
package/README.md
CHANGED
|
@@ -230,9 +230,9 @@ node dist/server/mcpServer.mjs # stdio transport
|
|
|
230
230
|
│ MCP Server (standalone) │
|
|
231
231
|
│ 7 tools · 3 resources · 3 prompts · stdio transport │
|
|
232
232
|
│ │
|
|
233
|
-
│
|
|
234
|
-
│ │ Claude, Copilot│ │ Cursor, Windsurf│ │ Any MCP Client│
|
|
235
|
-
│
|
|
233
|
+
│ ┌─────────────────┐ ┌──────────────────┐ ┌──────────────────┐ │
|
|
234
|
+
│ │ Claude, Copilot│ │ Cursor, Windsurf│ │ Any MCP Client │ │
|
|
235
|
+
│ └─────────────────┘ └──────────────────┘ └──────────────────┘ │
|
|
236
236
|
└─────────────────────────────────────────────────────────────────┘
|
|
237
237
|
```
|
|
238
238
|
|