File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 7
7
"start:client" : " pnpm --dir client start --isRoot" ,
8
8
"start:debug" : " cross-env NODE_ENV=development VERBOSE=true DEBUG=eliza:* pnpm --filter \" @ai16z/agent\" start --isRoot" ,
9
9
"dev" : " bash ./scripts/dev.sh" ,
10
- "dev:build" : " turbo run build --filter=!eliza-docs" ,
11
10
"lint" : " bash ./scripts/lint.sh" ,
12
11
"prettier-check" : " npx prettier --check ." ,
13
12
"prettier" : " npx prettier --write ." ,
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ cat << "EOF"
38
38
* *
39
39
* 4. Update the 'agent/package.json' file: *
40
40
* *
41
- * Add your plugin to the "dependencies" section like so: *
41
+ * Add your plugin to the "dependencies" section like so: *
42
42
* *
43
43
* "@ai16z/your-plugin-name": "workspace:*" *
44
44
* *
@@ -61,6 +61,12 @@ cat << "EOF"
61
61
62
62
EOF
63
63
64
+ # 2 seconds delay
65
+ for i in {1..5}; do
66
+ echo -n " ."
67
+ sleep 0.4
68
+ done
69
+
64
70
# Check if the packages directory exists
65
71
if [ ! -d " $PACKAGES_DIR " ]; then
66
72
echo " Error: Directory $PACKAGES_DIR does not exist."
107
113
fi
108
114
109
115
# Run build command first
110
- if ! pnpm dev: build; then
116
+ if ! pnpm build; then
111
117
echo " Build failed. Exiting."
112
118
exit 1
113
119
fi
You can’t perform that action at this time.
0 commit comments