@elizaos/cli 1.6.4 → 1.6.5-alpha.2

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.
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/commands/start/index.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,OAAO,EAA8B,MAAM,WAAW,CAAC;AAOhE,eAAO,MAAM,KAAK,SA8Jd,CAAC;AAGL,cAAc,SAAS,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/commands/start/index.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,OAAO,EAA8B,MAAM,WAAW,CAAC;AAMhE,eAAO,MAAM,KAAK,SA8Jd,CAAC;AAGL,cAAc,SAAS,CAAC"}
package/dist/index.js CHANGED
@@ -4749,7 +4749,7 @@ __export(exports_version, {
4749
4749
  BUILD_TIME: () => BUILD_TIME,
4750
4750
  BUILD_ENV: () => BUILD_ENV
4751
4751
  });
4752
- var CLI_VERSION = "1.6.4", CLI_NAME = "@elizaos/cli", CLI_DESCRIPTION = "elizaOS CLI - Manage your AI agents and plugins", BUILD_TIME = "2025-11-05T19:02:42.101Z", BUILD_ENV = "production", version_default;
4752
+ var CLI_VERSION = "1.6.5-alpha.2", CLI_NAME = "@elizaos/cli", CLI_DESCRIPTION = "elizaOS CLI - Manage your AI agents and plugins", BUILD_TIME = "2025-11-12T11:05:01.270Z", BUILD_ENV = "production", version_default;
4753
4753
  var init_version = __esm(() => {
4754
4754
  version_default = {
4755
4755
  version: CLI_VERSION,
@@ -30437,7 +30437,7 @@ function mergeUint8Arrays(items) {
30437
30437
  }
30438
30438
 
30439
30439
  // ../../node_modules/puppeteer-core/lib/esm/puppeteer/util/version.js
30440
- var packageVersion = "24.29.0";
30440
+ var packageVersion = "24.29.1";
30441
30441
 
30442
30442
  // ../../node_modules/puppeteer-core/lib/esm/puppeteer/common/Debug.js
30443
30443
  async function importDebug() {
@@ -292890,7 +292890,7 @@ var ENOREALPATH = 512;
292890
292890
  var ENOCHILD = ENOTDIR | ENOENT | ENOREALPATH;
292891
292891
  var TYPEMASK = 1023;
292892
292892
  var entToType = (s) => s.isFile() ? IFREG : s.isDirectory() ? IFDIR : s.isSymbolicLink() ? IFLNK : s.isCharacterDevice() ? IFCHR : s.isBlockDevice() ? IFBLK : s.isSocket() ? IFSOCK : s.isFIFO() ? IFIFO : UNKNOWN;
292893
- var normalizeCache = new Map;
292893
+ var normalizeCache = new LRUCache({ max: 2 ** 12 });
292894
292894
  var normalize = (s) => {
292895
292895
  const c3 = normalizeCache.get(s);
292896
292896
  if (c3)
@@ -292899,7 +292899,7 @@ var normalize = (s) => {
292899
292899
  normalizeCache.set(s, n2);
292900
292900
  return n2;
292901
292901
  };
292902
- var normalizeNocaseCache = new Map;
292902
+ var normalizeNocaseCache = new LRUCache({ max: 2 ** 12 });
292903
292903
  var normalizeNocase = (s) => {
292904
292904
  const c3 = normalizeNocaseCache.get(s);
292905
292905
  if (c3)
@@ -301523,7 +301523,7 @@ class NetworkManager extends EventEmitter4 {
301523
301523
  this.#networkEnabled = networkEnabled ?? true;
301524
301524
  }
301525
301525
  #canIgnoreError(error46) {
301526
- return isErrorLike(error46) && (isTargetClosedError(error46) || error46.message.includes("Not supported"));
301526
+ return isErrorLike(error46) && (isTargetClosedError(error46) || error46.message.includes("Not supported") || error46.message.includes("wasn't found"));
301527
301527
  }
301528
301528
  async addClient(client) {
301529
301529
  if (!this.#networkEnabled || this.#clients.has(client)) {
@@ -306953,8 +306953,8 @@ init_WaitTask();
306953
306953
  init_XPathQueryHandler();
306954
306954
  // ../../node_modules/puppeteer-core/lib/esm/puppeteer/revisions.js
306955
306955
  var PUPPETEER_REVISIONS = Object.freeze({
306956
- chrome: "142.0.7444.59",
306957
- "chrome-headless-shell": "142.0.7444.59",
306956
+ chrome: "142.0.7444.61",
306957
+ "chrome-headless-shell": "142.0.7444.61",
306958
306958
  firefox: "stable_144.0.2"
306959
306959
  });
306960
306960
  // ../../node_modules/puppeteer-core/lib/esm/puppeteer/util/util.js
@@ -310855,8 +310855,7 @@ init_build_project();
310855
310855
  init_directory_detection();
310856
310856
  init_esm();
310857
310857
  init_user_environment();
310858
- var import_dotenv5 = __toESM(require_main(), 1);
310859
- import { logger as logger44 } from "@elizaos/core";
310858
+ import { logger as logger44, loadEnvFile } from "@elizaos/core";
310860
310859
  import { AgentServer, loadCharacterTryPath } from "@elizaos/server";
310861
310860
  import * as fs33 from "fs";
310862
310861
  import * as path63 from "path";
@@ -310875,12 +310874,12 @@ var start = new Command().name("start").description("Build and start the Eliza a
310875
310874
  const { envFilePath } = await userEnv.getPathInfo();
310876
310875
  const candidateEnv = envFilePath || path63.join(process.cwd(), ".env");
310877
310876
  if (fs33.existsSync(candidateEnv)) {
310878
- import_dotenv5.default.config({ path: candidateEnv });
310877
+ loadEnvFile(candidateEnv);
310879
310878
  }
310880
310879
  } catch {
310881
310880
  const envPath = path63.join(process.cwd(), ".env");
310882
310881
  if (fs33.existsSync(envPath)) {
310883
- import_dotenv5.default.config({ path: envPath });
310882
+ loadEnvFile(envPath);
310884
310883
  }
310885
310884
  }
310886
310885
  await ensureElizaOSCli();
@@ -311399,7 +311398,7 @@ async function runComponentTests(testPath, options, projectInfo) {
311399
311398
  // src/commands/test/actions/e2e-tests.ts
311400
311399
  init_utils();
311401
311400
  import { logger as logger50 } from "@elizaos/core";
311402
- var dotenv6 = __toESM(require_main(), 1);
311401
+ var dotenv5 = __toESM(require_main(), 1);
311403
311402
  import { AgentServer as AgentServer2, jsonToCharacter, loadCharacterTryPath as loadCharacterTryPath2 } from "@elizaos/server";
311404
311403
  import * as fs35 from "fs";
311405
311404
  import path68 from "path";
@@ -311448,7 +311447,7 @@ async function runE2eTests(testPath, options, projectInfo) {
311448
311447
  console.info(`Set PGLITE_DATA_DIR to: ${elizaDbDir}`);
311449
311448
  if (fs35.existsSync(envFilePath)) {
311450
311449
  logger50.info(`Loading environment variables from: ${envFilePath}`);
311451
- dotenv6.config({ path: envFilePath });
311450
+ dotenv5.config({ path: envFilePath });
311452
311451
  logger50.info("Environment variables loaded");
311453
311452
  } else {
311454
311453
  logger50.warn(`Environment file not found: ${envFilePath}`);
@@ -313358,5 +313357,5 @@ main().catch((error46) => {
313358
313357
  process.exit(1);
313359
313358
  });
313360
313359
 
313361
- //# debugId=575E1BAC108F155B64756E2164756E21
313360
+ //# debugId=FC304DADAAFC252D64756E2164756E21
313362
313361
  //# sourceMappingURL=index.js.map