arcana-ai 0.2.5 → 0.2.8

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/bin/arcana.js +2 -2
  2. package/package.json +1 -1
package/bin/arcana.js CHANGED
@@ -10,7 +10,7 @@ const crypto = require("crypto")
10
10
  const os = require("os")
11
11
 
12
12
  const REPO = "Lento47/arcana"
13
- const VERSION = "v0.2.5"
13
+ const VERSION = "v0.2.7"
14
14
 
15
15
  const PLATFORM_MAP = {
16
16
  "win32-x64": { asset: "arcana-windows-x64.zip", binary: "arcana.exe" },
@@ -127,7 +127,7 @@ async function main() {
127
127
  process.exit(child.status ?? 0)
128
128
  }
129
129
 
130
- main().catch((err) => {
130
+ main().then((code) => process.exit(code), (err) => {
131
131
  console.error(`arcana: ${err.message}`)
132
132
  process.exit(1)
133
133
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arcana-ai",
3
- "version": "0.2.5",
3
+ "version": "0.2.8",
4
4
  "description": "Self-improving AI agent CLI — opencode TUI + skills. Installs the arcana binary.",
5
5
  "bin": {
6
6
  "arcana": "./bin/arcana.js"