@morebeans/cli 2.0.1 → 2.0.2
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.
- package/index.ts +5 -5
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -15,7 +15,7 @@ import { existsSync, mkdirSync, readFileSync, writeFileSync } from "fs";
|
|
|
15
15
|
import { join, resolve } from "path";
|
|
16
16
|
import { homedir } from "os";
|
|
17
17
|
|
|
18
|
-
const VERSION = "2.0.
|
|
18
|
+
const VERSION = "2.0.2";
|
|
19
19
|
const BEANS_HOME = join(homedir(), ".beans");
|
|
20
20
|
const BEANS_CONFIG = join(BEANS_HOME, "config.json");
|
|
21
21
|
|
|
@@ -101,10 +101,10 @@ async function cmdInit() {
|
|
|
101
101
|
const dirs = [
|
|
102
102
|
".claude/plugins",
|
|
103
103
|
".claude/agents",
|
|
104
|
-
".
|
|
105
|
-
".
|
|
106
|
-
".
|
|
107
|
-
".
|
|
104
|
+
".beans/analysis",
|
|
105
|
+
".beans/context",
|
|
106
|
+
".beans/cache",
|
|
107
|
+
".beans/logs",
|
|
108
108
|
];
|
|
109
109
|
|
|
110
110
|
for (const dir of dirs) {
|