@gmickel/gno 1.39.0 → 1.39.1

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.
@@ -0,0 +1 @@
1
+ 2d89e464e97d48a276e92f3625ca90bb1983fcf22b5d175f3da6d47453b4f626 gno-browser-clipper-v1.39.1.zip
@@ -21,5 +21,5 @@
21
21
  "content_security_policy": {
22
22
  "extension_pages": "script-src 'self'; object-src 'none'; connect-src http://127.0.0.1:*"
23
23
  },
24
- "version": "1.39.0"
24
+ "version": "1.39.1"
25
25
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gmickel/gno",
3
- "version": "1.39.0",
3
+ "version": "1.39.1",
4
4
  "description": "Local semantic search for your documents. Index Markdown, PDF, and Office files with hybrid BM25 + vector search.",
5
5
  "keywords": [
6
6
  "embeddings",
@@ -3201,7 +3201,9 @@ function wireSkillCommands(program: Command): void {
3201
3201
  | "hermes"
3202
3202
  | "all",
3203
3203
  force: Boolean(cmdOpts.force),
3204
- json: Boolean(cmdOpts.json),
3204
+ // The root program also defines a global --json and may consume the
3205
+ // flag; leave undefined here so the runner falls back to globals.
3206
+ json: cmdOpts.json === true ? true : undefined,
3205
3207
  });
3206
3208
  });
3207
3209
 
@@ -3252,7 +3254,7 @@ function wireSkillCommands(program: Command): void {
3252
3254
  | "openclaw"
3253
3255
  | "hermes"
3254
3256
  | "all",
3255
- json: Boolean(cmdOpts.json),
3257
+ json: cmdOpts.json === true ? true : undefined,
3256
3258
  });
3257
3259
  });
3258
3260
 
@@ -3316,7 +3318,7 @@ function wireSkillCommands(program: Command): void {
3316
3318
  | "openclaw"
3317
3319
  | "hermes"
3318
3320
  | "all",
3319
- json: Boolean(cmdOpts.json),
3321
+ json: cmdOpts.json === true ? true : undefined,
3320
3322
  });
3321
3323
  });
3322
3324
  }
@@ -1 +0,0 @@
1
- b3b2f2609cfe5c821eb9d22d76832b6ad329afa7496c0792e0dd4f5bd0f74fbc gno-browser-clipper-v1.39.0.zip