opencode-gitlab-plugin 2.3.0 → 2.4.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 +7 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +344 -1
- package/dist/index.js.map +1 -1
- package/dist/mcp-server.cjs +1 -1
- package/package.json +1 -1
package/dist/mcp-server.cjs
CHANGED
|
@@ -33934,7 +33934,7 @@ async function main() {
|
|
|
33934
33934
|
...auditTools,
|
|
33935
33935
|
...awardEmojiTools
|
|
33936
33936
|
};
|
|
33937
|
-
const version2 = true ? "2.
|
|
33937
|
+
const version2 = true ? "2.4.0" : "0.0.0";
|
|
33938
33938
|
const server = new McpServer({ name: "gitlab", version: version2 });
|
|
33939
33939
|
adaptToolsToMcp(server, allTools);
|
|
33940
33940
|
const transport = new StdioServerTransport();
|
package/package.json
CHANGED