Skip to content

Commit 211b9c2

Browse files
committed
elizaos test is working
1 parent 4a4c178 commit 211b9c2

File tree

18 files changed

+443
-1069
lines changed

18 files changed

+443
-1069
lines changed

bun.lock

+18-522
Large diffs are not rendered by default.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"husky": "9.1.7",
3131
"lerna": "8.1.4",
3232
"only-allow": "^1.2.1",
33+
"sharp": "0.33.5",
3334
"turbo": "^2.4.4",
3435
"typedoc": "0.27.9",
3536
"typescript": "5.8.2",

packages/cli/src/commands/create.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ async function installDependencies(
7777

7878
// First just install basic dependencies
7979
try {
80-
await runBunCommand(["install"], targetDir);
80+
await runBunCommand(["install", "--no-optional"], targetDir);
8181
logger.success("Installed base dependencies");
8282
} catch (error) {
8383
logger.warn(`Initial dependency installation error: ${error.message}`);
@@ -221,7 +221,7 @@ export const create = new Command()
221221
// Install dependencies
222222
logger.info("Installing dependencies...");
223223
try {
224-
await runBunCommand(["install"], targetDir);
224+
await runBunCommand(["install", "--no-optional"], targetDir);
225225
logger.success("Dependencies installed successfully!");
226226

227227
// Build the plugin after installing dependencies

packages/cli/src/commands/start.ts

-2
Original file line numberDiff line numberDiff line change
@@ -293,8 +293,6 @@ const startAgents = async (options: {
293293
let selectedServices: string[] = [];
294294
let selectedAiModels: string[] = [];
295295

296-
console.log("*** existingConfig", existingConfig);
297-
298296
// Check if we should reconfigure based on command-line option or if using default config
299297
const shouldConfigure = options.configure || existingConfig.isDefault;
300298

0 commit comments

Comments
 (0)