blun-king-cli 5.1.5 → 5.1.6

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/blun-cli.js +1 -1
  2. package/package.json +1 -1
package/blun-cli.js CHANGED
@@ -17,7 +17,7 @@ const MEMORY_DIR = path.join(CONFIG_DIR, "memory");
17
17
  const SKILLS_DIR = path.join(CONFIG_DIR, "skills");
18
18
  const HISTORY_FILE = path.join(CONFIG_DIR, "history.json");
19
19
  const LOG_FILE = path.join(CONFIG_DIR, "cli.log");
20
- const PKG_VERSION = (() => { try { return require(path.join(__dirname, "..", "package.json")).version; } catch(e) { return "1.7.0"; } })();
20
+ const PKG_VERSION = (() => { try { return require(path.join(__dirname, "package.json")).version; } catch(e) { try { return require(path.join(__dirname, "..", "package.json")).version; } catch(e2) { return "5.1.6"; } } })();
21
21
 
22
22
  if (!fs.existsSync(CONFIG_DIR)) fs.mkdirSync(CONFIG_DIR, { recursive: true });
23
23
  if (!fs.existsSync(MEMORY_DIR)) fs.mkdirSync(MEMORY_DIR, { recursive: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blun-king-cli",
3
- "version": "5.1.5",
3
+ "version": "5.1.6",
4
4
  "description": "BLUN King CLI — Your local AI assistant powered by Gemma4",
5
5
  "type": "commonjs",
6
6
  "bin": {