@cli4ai/nanobanana 1.0.11 → 1.0.13

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.
Files changed (3) hide show
  1. package/cli4ai.json +1 -1
  2. package/package.json +1 -1
  3. package/run.ts +2 -2
package/cli4ai.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nanobanana",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "description": "Image generation with Gemini (Nano Banana Pro)",
5
5
  "author": "cliforai",
6
6
  "license": "BUSL-1.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cli4ai/nanobanana",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "description": "Image generation with Gemini (Nano Banana Pro)",
5
5
  "author": "cliforai",
6
6
  "license": "BUSL-1.1",
package/run.ts CHANGED
@@ -4,7 +4,7 @@ import { execSync } from 'child_process';
4
4
  import { homedir } from 'os';
5
5
  import { join } from 'path';
6
6
  import { cli, output, outputError, withErrorHandling, sleep } from '@cli4ai/lib/cli.ts';
7
- import { getBrowser } from '../../lib/browser.ts';
7
+ import { getBrowser } from '@cli4ai/lib/browser.ts';
8
8
 
9
9
  // List Gemini files in Downloads using shell (bypasses sandbox)
10
10
  function getGeminiFiles(): string[] {
@@ -157,7 +157,7 @@ program
157
157
  }
158
158
 
159
159
  } finally {
160
- // Keep page open, just disconnect
160
+ await page.close();
161
161
  browser.disconnect();
162
162
  }
163
163
  }));