Skip to content

Commit e713ed1

Browse files
authored
Merge pull request #892 from ai16z/dev_command
chore: improved dev command
2 parents 9bc2963 + 1656ce7 commit e713ed1

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"start:client": "pnpm --dir client start --isRoot",
88
"start:debug": "cross-env NODE_ENV=development VERBOSE=true DEBUG=eliza:* pnpm --filter \"@ai16z/agent\" start --isRoot",
99
"dev": "bash ./scripts/dev.sh",
10-
"dev:build": "turbo run build --filter=!eliza-docs",
1110
"lint": "bash ./scripts/lint.sh",
1211
"prettier-check": "npx prettier --check .",
1312
"prettier": "npx prettier --write .",

scripts/dev.sh

+8-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ cat << "EOF"
3838
* *
3939
* 4. Update the 'agent/package.json' file: *
4040
* *
41-
* Add your plugin to the "dependencies" section like so: *
41+
* Add your plugin to the "dependencies" section like so: *
4242
* *
4343
* "@ai16z/your-plugin-name": "workspace:*" *
4444
* *
@@ -61,6 +61,12 @@ cat << "EOF"
6161
6262
EOF
6363

64+
# 2 seconds delay
65+
for i in {1..5}; do
66+
echo -n "."
67+
sleep 0.4
68+
done
69+
6470
# Check if the packages directory exists
6571
if [ ! -d "$PACKAGES_DIR" ]; then
6672
echo "Error: Directory $PACKAGES_DIR does not exist."
@@ -107,7 +113,7 @@ else
107113
fi
108114

109115
# Run build command first
110-
if ! pnpm dev:build; then
116+
if ! pnpm build; then
111117
echo "Build failed. Exiting."
112118
exit 1
113119
fi

0 commit comments

Comments
 (0)