buildcrew 1.2.0 → 1.2.1
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/bin/setup.js +2 -1
- package/package.json +1 -1
package/bin/setup.js
CHANGED
|
@@ -9,7 +9,8 @@ const AGENTS_SRC = join(__dirname, "..", "agents");
|
|
|
9
9
|
const TEMPLATES_SRC = join(__dirname, "..", "templates");
|
|
10
10
|
const TARGET_DIR = join(process.cwd(), ".claude", "agents");
|
|
11
11
|
const HARNESS_DIR = join(process.cwd(), ".claude", "harness");
|
|
12
|
-
const
|
|
12
|
+
const PKG = JSON.parse(await readFile(join(__dirname, "..", "package.json"), "utf-8"));
|
|
13
|
+
const VERSION = PKG.version;
|
|
13
14
|
|
|
14
15
|
const RESET = "\x1b[0m";
|
|
15
16
|
const BOLD = "\x1b[1m";
|
package/package.json
CHANGED