golem-cc 0.1.29 → 0.1.30
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/golem +5 -0
- package/bin/install.cjs +5 -0
- package/package.json +1 -1
package/bin/golem
CHANGED
|
@@ -229,6 +229,11 @@ cmd_install() {
|
|
|
229
229
|
version=$(get_version)
|
|
230
230
|
header_box "INSTALLING v$version" "$BLUE"
|
|
231
231
|
echo ""
|
|
232
|
+
echo -e " ${YELLOW}What's New:${NC}"
|
|
233
|
+
echo -e " ${DIM}• Pretty markdown output (bundled renderer)${NC}"
|
|
234
|
+
echo -e " ${DIM}• Better build loop progress (task display, timing)${NC}"
|
|
235
|
+
echo -e " ${DIM}• All files now inside .golem/ directory${NC}"
|
|
236
|
+
echo ""
|
|
232
237
|
|
|
233
238
|
# Create directories
|
|
234
239
|
mkdir -p .golem/prompts
|
package/bin/install.cjs
CHANGED
|
@@ -25,6 +25,11 @@ ${cyan} ██████╗ ██████╗ ██╗ ███
|
|
|
25
25
|
|
|
26
26
|
Golem ${dim}v${pkg.version}${reset}
|
|
27
27
|
${dim}"Ruby's son is a doctor, and you're letting a computer write your code?"${reset}
|
|
28
|
+
|
|
29
|
+
${yellow}What's New:${reset}
|
|
30
|
+
${dim}• Pretty markdown output (bundled renderer)${reset}
|
|
31
|
+
${dim}• Better build loop progress (task display, timing)${reset}
|
|
32
|
+
${dim}• All files now inside .golem/ directory${reset}
|
|
28
33
|
`;
|
|
29
34
|
|
|
30
35
|
// Parse args
|