igris-soul 1.1.2 → 1.1.3

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 (2) hide show
  1. package/cli.cjs +2 -6
  2. package/package.json +1 -1
package/cli.cjs CHANGED
@@ -1,13 +1,9 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
 
3
3
  const { spawn } = require("node:child_process");
4
- const { fileURLToPath } = require("node:url");
5
4
  const path = require("node:path");
6
5
 
7
- const packageDir = path.dirname(
8
- fileURLToPath(require.resolve("./package.json")),
9
- );
10
-
6
+ const packageDir = __dirname;
11
7
  const indexPath = path.join(packageDir, "index.js");
12
8
 
13
9
  const child = spawn(process.execPath, [indexPath, ...process.argv.slice(2)], {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igris-soul",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "A terminal AI assistant powered by Gemini and Tavily.",
5
5
  "license": "ISC",
6
6
  "author": "Barshan Majumdar",