@ariobarin/glossa 0.1.0-beta.5 → 0.1.0-beta.7
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/main.js +2 -2
- package/package.json +3 -3
package/dist/main.js
CHANGED
|
@@ -62,7 +62,7 @@ var SecureStore = class {
|
|
|
62
62
|
serialized = await entry.getPassword();
|
|
63
63
|
} catch {
|
|
64
64
|
}
|
|
65
|
-
if (serialized
|
|
65
|
+
if (serialized != null) {
|
|
66
66
|
return { value: this.#options.parse(serialized), backend: "keyring" };
|
|
67
67
|
}
|
|
68
68
|
}
|
|
@@ -14202,7 +14202,7 @@ async function selectExposureRoot(explicitPath, allowBroadRoot = false, cwd = pr
|
|
|
14202
14202
|
}
|
|
14203
14203
|
|
|
14204
14204
|
// src/main.ts
|
|
14205
|
-
var VERSION = "0.1.0-beta.
|
|
14205
|
+
var VERSION = "0.1.0-beta.7";
|
|
14206
14206
|
var helpText = {
|
|
14207
14207
|
main: `Glossa ${VERSION}
|
|
14208
14208
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ariobarin/glossa",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Connect an explicitly exposed local coding workspace to the Glossa MCP relay.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|
|
8
|
-
"node": ">=
|
|
8
|
+
"node": ">=22.9.0"
|
|
9
9
|
},
|
|
10
10
|
"bin": {
|
|
11
11
|
"glossa": "dist/main.js"
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@glossa/protocol": "*",
|
|
29
|
-
"@types/node": "
|
|
29
|
+
"@types/node": "22.20.1",
|
|
30
30
|
"esbuild": "0.28.1",
|
|
31
31
|
"tsx": "4.20.6",
|
|
32
32
|
"typescript": "5.9.3"
|