caplets 0.17.4 → 0.17.5
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/dist/index.js +8 -5
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -13892,7 +13892,7 @@ function readBestEffortConfigInput(path, kind, warnings, transform) {
|
|
|
13892
13892
|
warnings.push({
|
|
13893
13893
|
kind,
|
|
13894
13894
|
path,
|
|
13895
|
-
message: errorMessage(error)
|
|
13895
|
+
message: errorMessage$2(error)
|
|
13896
13896
|
});
|
|
13897
13897
|
return;
|
|
13898
13898
|
}
|
|
@@ -13910,7 +13910,7 @@ function loadBestEffortCapletFiles(root, kind, warnings) {
|
|
|
13910
13910
|
paths: result.paths
|
|
13911
13911
|
};
|
|
13912
13912
|
}
|
|
13913
|
-
function errorMessage(error) {
|
|
13913
|
+
function errorMessage$2(error) {
|
|
13914
13914
|
return error instanceof Error ? error.message : String(error);
|
|
13915
13915
|
}
|
|
13916
13916
|
function loadIsolatedConfig(options) {
|
|
@@ -60129,7 +60129,7 @@ const EMPTY_COMPLETION_RESULT = { completion: {
|
|
|
60129
60129
|
values: [],
|
|
60130
60130
|
hasMore: false
|
|
60131
60131
|
} };
|
|
60132
|
-
var version$1 = "0.18.
|
|
60132
|
+
var version$1 = "0.18.5";
|
|
60133
60133
|
var CapletsMcpSession = class {
|
|
60134
60134
|
engine;
|
|
60135
60135
|
server;
|
|
@@ -69403,15 +69403,18 @@ function writeAddResult(writeOut, label, result) {
|
|
|
69403
69403
|
}
|
|
69404
69404
|
//#endregion
|
|
69405
69405
|
//#region package.json
|
|
69406
|
-
var version = "0.17.
|
|
69406
|
+
var version = "0.17.5";
|
|
69407
69407
|
//#endregion
|
|
69408
69408
|
//#region src/index.ts
|
|
69409
69409
|
async function main() {
|
|
69410
69410
|
await runCli(process.argv.slice(2), { version });
|
|
69411
69411
|
}
|
|
69412
69412
|
main().catch((error) => {
|
|
69413
|
-
|
|
69413
|
+
process.stderr.write(`${errorMessage(error)}\n`);
|
|
69414
69414
|
process.exit(1);
|
|
69415
69415
|
});
|
|
69416
|
+
function errorMessage(error) {
|
|
69417
|
+
return error instanceof Error ? error.message : String(error);
|
|
69418
|
+
}
|
|
69416
69419
|
//#endregion
|
|
69417
69420
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "caplets",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.5",
|
|
4
4
|
"description": "Progressive disclosure gateway CLI for MCP servers and native Caplets adapters.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"caplets",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
37
|
-
"@caplets/core": "0.18.
|
|
37
|
+
"@caplets/core": "0.18.5"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/node": "^25.9.1",
|