@elizaos/cli 1.5.7 → 1.6.0-alpha.0

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.
@@ -22,55 +22,38 @@ async function build() {
22
22
  // Clean previous build
23
23
  await cleanBuild('dist');
24
24
 
25
- // Run JavaScript build and TypeScript declarations in parallel
26
- console.log('Starting parallel build tasks...');
27
-
28
- const [buildResult, tscResult] = await Promise.all([
29
- // Task 1: Build with Bun
30
- (async () => {
31
- console.log('📦 Bundling with Bun...');
32
- const result = await Bun.build({
33
- entrypoints: ['./src/index.ts'],
34
- outdir: './dist',
35
- target: 'node',
36
- format: 'esm',
37
- sourcemap: true,
38
- minify: false,
39
- external: ['dotenv', 'fs', 'path', 'https', 'node:*', '@elizaos/core', '@elizaos/cli', 'zod'],
40
- naming: {
41
- entry: '[dir]/[name].[ext]',
42
- },
43
- });
25
+ // Build with Bun
26
+ console.log('Bundling with Bun...');
27
+ const result = await Bun.build({
28
+ entrypoints: ['./src/index.ts'],
29
+ outdir: './dist',
30
+ target: 'node',
31
+ format: 'esm',
32
+ sourcemap: true,
33
+ minify: false,
34
+ external: ['dotenv', 'fs', 'path', 'https', 'node:*', '@elizaos/core', '@elizaos/cli', 'zod'],
35
+ naming: {
36
+ entry: '[dir]/[name].[ext]',
37
+ },
38
+ });
44
39
 
45
- if (!result.success) {
46
- console.error('✗ Build failed:', result.logs);
47
- return { success: false, outputs: [] };
48
- }
40
+ if (!result.success) {
41
+ console.error('✗ Build failed:', result.logs);
42
+ return false;
43
+ }
49
44
 
50
- const totalSize = result.outputs.reduce((sum, output) => sum + output.size, 0);
51
- const sizeMB = (totalSize / 1024 / 1024).toFixed(2);
52
- console.log(`✓ Built ${result.outputs.length} file(s) - ${sizeMB}MB`);
53
-
54
- return result;
55
- })(),
56
-
57
- // Task 2: Generate TypeScript declarations
58
- (async () => {
59
- console.log('📝 Generating TypeScript declarations...');
60
- try {
61
- await $`tsc --emitDeclarationOnly --incremental --project ./tsconfig.build.json`.quiet();
62
- console.log('✓ TypeScript declarations generated');
63
- return { success: true };
64
- } catch (error) {
65
- console.warn('⚠ Failed to generate TypeScript declarations');
66
- console.warn(' This is usually due to test files or type errors.');
67
- return { success: false };
68
- }
69
- })()
70
- ]);
45
+ const totalSize = result.outputs.reduce((sum, output) => sum + output.size, 0);
46
+ const sizeMB = (totalSize / 1024 / 1024).toFixed(2);
47
+ console.log(`✓ Built ${result.outputs.length} file(s) - ${sizeMB}MB`);
71
48
 
72
- if (!buildResult.success) {
73
- return false;
49
+ // Generate TypeScript declarations
50
+ console.log('\nGenerating TypeScript declarations...');
51
+ try {
52
+ await $`tsc --emitDeclarationOnly --incremental --project ./tsconfig.build.json`.quiet();
53
+ console.log('✓ TypeScript declarations generated');
54
+ } catch (error) {
55
+ console.warn('⚠ Failed to generate TypeScript declarations');
56
+ console.warn(' This is usually due to test files or type errors.');
74
57
  }
75
58
 
76
59
  const elapsed = ((performance.now() - start) / 1000).toFixed(2);
@@ -39,11 +39,11 @@
39
39
  "package.json"
40
40
  ],
41
41
  "dependencies": {
42
- "@elizaos/core": "1.5.7",
42
+ "@elizaos/core": "1.6.0-alpha.0",
43
43
  "zod": "^3.24.4"
44
44
  },
45
45
  "devDependencies": {
46
- "@elizaos/cli": "1.5.7",
46
+ "@elizaos/cli": "1.6.0-alpha.0",
47
47
  "dotenv": "16.4.5",
48
48
  "prettier": "3.5.3",
49
49
  "typescript": "5.8.2"
@@ -22,55 +22,38 @@ async function build() {
22
22
  // Clean previous build
23
23
  await cleanBuild('dist');
24
24
 
25
- // Run JavaScript build and TypeScript declarations in parallel
26
- console.log('Starting parallel build tasks...');
27
-
28
- const [buildResult, tscResult] = await Promise.all([
29
- // Task 1: Build with Bun
30
- (async () => {
31
- console.log('📦 Bundling with Bun...');
32
- const result = await Bun.build({
33
- entrypoints: ['./src/index.ts'],
34
- outdir: './dist',
35
- target: 'node',
36
- format: 'esm',
37
- sourcemap: true,
38
- minify: false,
39
- external: ['dotenv', 'node:*', '@elizaos/core', '@elizaos/cli', 'zod'],
40
- naming: {
41
- entry: '[dir]/[name].[ext]',
42
- },
43
- });
25
+ // Build with Bun
26
+ console.log('Bundling with Bun...');
27
+ const result = await Bun.build({
28
+ entrypoints: ['./src/index.ts'],
29
+ outdir: './dist',
30
+ target: 'node',
31
+ format: 'esm',
32
+ sourcemap: true,
33
+ minify: false,
34
+ external: ['dotenv', 'node:*', '@elizaos/core', '@elizaos/cli', 'zod'],
35
+ naming: {
36
+ entry: '[dir]/[name].[ext]',
37
+ },
38
+ });
44
39
 
45
- if (!result.success) {
46
- console.error('✗ Build failed:', result.logs);
47
- return { success: false, outputs: [] };
48
- }
40
+ if (!result.success) {
41
+ console.error('✗ Build failed:', result.logs);
42
+ return false;
43
+ }
49
44
 
50
- const totalSize = result.outputs.reduce((sum, output) => sum + output.size, 0);
51
- const sizeMB = (totalSize / 1024 / 1024).toFixed(2);
52
- console.log(`✓ Built ${result.outputs.length} file(s) - ${sizeMB}MB`);
53
-
54
- return result;
55
- })(),
56
-
57
- // Task 2: Generate TypeScript declarations
58
- (async () => {
59
- console.log('📝 Generating TypeScript declarations...');
60
- try {
61
- await $`tsc --emitDeclarationOnly --incremental --project ./tsconfig.build.json`.quiet();
62
- console.log('✓ TypeScript declarations generated');
63
- return { success: true };
64
- } catch (error) {
65
- console.warn('⚠ Failed to generate TypeScript declarations');
66
- console.warn(' This is usually due to test files or type errors.');
67
- return { success: false };
68
- }
69
- })()
70
- ]);
45
+ const totalSize = result.outputs.reduce((sum, output) => sum + output.size, 0);
46
+ const sizeMB = (totalSize / 1024 / 1024).toFixed(2);
47
+ console.log(`✓ Built ${result.outputs.length} file(s) - ${sizeMB}MB`);
71
48
 
72
- if (!buildResult.success) {
73
- return false;
49
+ // Generate TypeScript declarations
50
+ console.log('\nGenerating TypeScript declarations...');
51
+ try {
52
+ await $`tsc --emitDeclarationOnly --incremental --project ./tsconfig.build.json`.quiet();
53
+ console.log('✓ TypeScript declarations generated');
54
+ } catch (error) {
55
+ console.warn('⚠ Failed to generate TypeScript declarations');
56
+ console.warn(' This is usually due to test files or type errors.');
74
57
  }
75
58
 
76
59
  const elapsed = ((performance.now() - start) / 1000).toFixed(2);
@@ -39,7 +39,7 @@
39
39
  "package.json"
40
40
  ],
41
41
  "dependencies": {
42
- "@elizaos/core": "1.5.7",
42
+ "@elizaos/core": "1.6.0-alpha.0",
43
43
  "@tanstack/react-query": "^5.80.7",
44
44
  "clsx": "^2.1.1",
45
45
  "tailwind-merge": "^3.3.1",
@@ -48,7 +48,7 @@
48
48
  "zod": "3.24.2"
49
49
  },
50
50
  "devDependencies": {
51
- "@elizaos/cli": "1.5.7",
51
+ "@elizaos/cli": "1.6.0-alpha.0",
52
52
  "@tailwindcss/vite": "^4.1.10",
53
53
  "@vitejs/plugin-react-swc": "^3.10.2",
54
54
  "dotenv": "16.4.5",
@@ -22,66 +22,49 @@ async function build() {
22
22
  // Clean previous build
23
23
  await cleanBuild('dist');
24
24
 
25
- // Run JavaScript build and TypeScript declarations in parallel
26
- console.log('Starting parallel build tasks...');
27
-
28
- const [buildResult, tscResult] = await Promise.all([
29
- // Task 1: Build with Bun
30
- (async () => {
31
- console.log('📦 Bundling with Bun...');
32
- const result = await Bun.build({
33
- entrypoints: ['./src/index.ts'],
34
- outdir: './dist',
35
- target: 'node',
36
- format: 'esm',
37
- sourcemap: true,
38
- minify: false,
39
- external: [
40
- 'dotenv',
41
- 'fs',
42
- 'path',
43
- 'https',
44
- 'node:*',
45
- '@elizaos/core',
46
- '@elizaos/plugin-bootstrap',
47
- '@elizaos/plugin-sql',
48
- '@elizaos/cli',
49
- 'zod',
50
- ],
51
- naming: {
52
- entry: '[dir]/[name].[ext]',
53
- },
54
- });
25
+ // Build with Bun
26
+ console.log('Bundling with Bun...');
27
+ const result = await Bun.build({
28
+ entrypoints: ['./src/index.ts'],
29
+ outdir: './dist',
30
+ target: 'node',
31
+ format: 'esm',
32
+ sourcemap: true,
33
+ minify: false,
34
+ external: [
35
+ 'dotenv',
36
+ 'fs',
37
+ 'path',
38
+ 'https',
39
+ 'node:*',
40
+ '@elizaos/core',
41
+ '@elizaos/plugin-bootstrap',
42
+ '@elizaos/plugin-sql',
43
+ '@elizaos/cli',
44
+ 'zod',
45
+ ],
46
+ naming: {
47
+ entry: '[dir]/[name].[ext]',
48
+ },
49
+ });
55
50
 
56
- if (!result.success) {
57
- console.error('✗ Build failed:', result.logs);
58
- return { success: false, outputs: [] };
59
- }
51
+ if (!result.success) {
52
+ console.error('✗ Build failed:', result.logs);
53
+ return false;
54
+ }
60
55
 
61
- const totalSize = result.outputs.reduce((sum, output) => sum + output.size, 0);
62
- const sizeMB = (totalSize / 1024 / 1024).toFixed(2);
63
- console.log(`✓ Built ${result.outputs.length} file(s) - ${sizeMB}MB`);
64
-
65
- return result;
66
- })(),
67
-
68
- // Task 2: Generate TypeScript declarations
69
- (async () => {
70
- console.log('📝 Generating TypeScript declarations...');
71
- try {
72
- await $`tsc --emitDeclarationOnly --incremental --project ./tsconfig.build.json`.quiet();
73
- console.log('✓ TypeScript declarations generated');
74
- return { success: true };
75
- } catch (error) {
76
- console.warn('⚠ Failed to generate TypeScript declarations');
77
- console.warn(' This is usually due to test files or type errors.');
78
- return { success: false };
79
- }
80
- })()
81
- ]);
56
+ const totalSize = result.outputs.reduce((sum, output) => sum + output.size, 0);
57
+ const sizeMB = (totalSize / 1024 / 1024).toFixed(2);
58
+ console.log(`✓ Built ${result.outputs.length} file(s) - ${sizeMB}MB`);
82
59
 
83
- if (!buildResult.success) {
84
- return false;
60
+ // Generate TypeScript declarations
61
+ console.log('\nGenerating TypeScript declarations...');
62
+ try {
63
+ await $`tsc --emitDeclarationOnly --incremental --project ./tsconfig.build.json`.quiet();
64
+ console.log('✓ TypeScript declarations generated');
65
+ } catch (error) {
66
+ console.warn('⚠ Failed to generate TypeScript declarations');
67
+ console.warn(' This is usually due to test files or type errors.');
85
68
  }
86
69
 
87
70
  const elapsed = ((performance.now() - start) / 1000).toFixed(2);
@@ -27,12 +27,12 @@
27
27
  "dist"
28
28
  ],
29
29
  "dependencies": {
30
- "@elizaos/cli": "1.5.7",
31
- "@elizaos/client": "1.5.7",
32
- "@elizaos/core": "1.5.7",
33
- "@elizaos/plugin-bootstrap": "1.5.7",
34
- "@elizaos/plugin-sql": "1.5.7",
35
- "@elizaos/server": "1.5.7",
30
+ "@elizaos/cli": "1.6.0-alpha.0",
31
+ "@elizaos/client": "1.6.0-alpha.0",
32
+ "@elizaos/core": "1.6.0-alpha.0",
33
+ "@elizaos/plugin-bootstrap": "1.6.0-alpha.0",
34
+ "@elizaos/plugin-sql": "1.6.0-alpha.0",
35
+ "@elizaos/server": "1.6.0-alpha.0",
36
36
  "@tanstack/react-query": "^5.29.0",
37
37
  "clsx": "^2.1.1",
38
38
  "react": "^18.3.1",
@@ -22,66 +22,49 @@ async function build() {
22
22
  // Clean previous build
23
23
  await cleanBuild('dist');
24
24
 
25
- // Run JavaScript build and TypeScript declarations in parallel
26
- console.log('Starting parallel build tasks...');
27
-
28
- const [buildResult, tscResult] = await Promise.all([
29
- // Task 1: Build with Bun
30
- (async () => {
31
- console.log('📦 Bundling with Bun...');
32
- const result = await Bun.build({
33
- entrypoints: ['./src/index.ts'],
34
- outdir: './dist',
35
- target: 'node',
36
- format: 'esm',
37
- sourcemap: true,
38
- minify: false,
39
- external: [
40
- 'dotenv',
41
- 'fs',
42
- 'path',
43
- 'https',
44
- 'node:*',
45
- '@elizaos/core',
46
- '@elizaos/plugin-bootstrap',
47
- '@elizaos/plugin-sql',
48
- '@elizaos/cli',
49
- 'zod',
50
- ],
51
- naming: {
52
- entry: '[dir]/[name].[ext]',
53
- },
54
- });
25
+ // Build with Bun
26
+ console.log('Bundling with Bun...');
27
+ const result = await Bun.build({
28
+ entrypoints: ['./src/index.ts'],
29
+ outdir: './dist',
30
+ target: 'node',
31
+ format: 'esm',
32
+ sourcemap: true,
33
+ minify: false,
34
+ external: [
35
+ 'dotenv',
36
+ 'fs',
37
+ 'path',
38
+ 'https',
39
+ 'node:*',
40
+ '@elizaos/core',
41
+ '@elizaos/plugin-bootstrap',
42
+ '@elizaos/plugin-sql',
43
+ '@elizaos/cli',
44
+ 'zod',
45
+ ],
46
+ naming: {
47
+ entry: '[dir]/[name].[ext]',
48
+ },
49
+ });
55
50
 
56
- if (!result.success) {
57
- console.error('✗ Build failed:', result.logs);
58
- return { success: false, outputs: [] };
59
- }
51
+ if (!result.success) {
52
+ console.error('✗ Build failed:', result.logs);
53
+ return false;
54
+ }
60
55
 
61
- const totalSize = result.outputs.reduce((sum, output) => sum + output.size, 0);
62
- const sizeMB = (totalSize / 1024 / 1024).toFixed(2);
63
- console.log(`✓ Built ${result.outputs.length} file(s) - ${sizeMB}MB`);
64
-
65
- return result;
66
- })(),
67
-
68
- // Task 2: Generate TypeScript declarations
69
- (async () => {
70
- console.log('📝 Generating TypeScript declarations...');
71
- try {
72
- await $`tsc --emitDeclarationOnly --incremental --project ./tsconfig.build.json`.quiet();
73
- console.log('✓ TypeScript declarations generated');
74
- return { success: true };
75
- } catch (error) {
76
- console.warn('⚠ Failed to generate TypeScript declarations');
77
- console.warn(' This is usually due to test files or type errors.');
78
- return { success: false };
79
- }
80
- })()
81
- ]);
56
+ const totalSize = result.outputs.reduce((sum, output) => sum + output.size, 0);
57
+ const sizeMB = (totalSize / 1024 / 1024).toFixed(2);
58
+ console.log(`✓ Built ${result.outputs.length} file(s) - ${sizeMB}MB`);
82
59
 
83
- if (!buildResult.success) {
84
- return false;
60
+ // Generate TypeScript declarations
61
+ console.log('\nGenerating TypeScript declarations...');
62
+ try {
63
+ await $`tsc --emitDeclarationOnly --incremental --project ./tsconfig.build.json`.quiet();
64
+ console.log('✓ TypeScript declarations generated');
65
+ } catch (error) {
66
+ console.warn('⚠ Failed to generate TypeScript declarations');
67
+ console.warn(' This is usually due to test files or type errors.');
85
68
  }
86
69
 
87
70
  const elapsed = ((performance.now() - start) / 1000).toFixed(2);
@@ -32,11 +32,11 @@
32
32
  "GUIDE.md"
33
33
  ],
34
34
  "dependencies": {
35
- "@elizaos/cli": "1.5.7",
36
- "@elizaos/core": "1.5.7",
37
- "@elizaos/plugin-bootstrap": "1.5.7",
35
+ "@elizaos/cli": "1.6.0-alpha.0",
36
+ "@elizaos/core": "1.6.0-alpha.0",
37
+ "@elizaos/plugin-bootstrap": "1.6.0-alpha.0",
38
38
  "@elizaos/plugin-redpill": "1.2.1",
39
- "@elizaos/plugin-sql": "1.5.7",
39
+ "@elizaos/plugin-sql": "1.6.0-alpha.0",
40
40
  "@phala/dstack-sdk": "0.1.11",
41
41
  "@solana/web3.js": "1.98.2",
42
42
  "@tanstack/react-query": "^5.29.0",
package/dist/version.d.ts CHANGED
@@ -3,10 +3,10 @@
3
3
  * Generated at build time by generate-version.ts
4
4
  * This file contains build-time constants to avoid runtime package.json resolution
5
5
  */
6
- export declare const CLI_VERSION = "1.5.7";
6
+ export declare const CLI_VERSION = "1.6.0-alpha.0";
7
7
  export declare const CLI_NAME = "@elizaos/cli";
8
8
  export declare const CLI_DESCRIPTION = "elizaOS CLI - Manage your AI agents and plugins";
9
- export declare const BUILD_TIME = "2025-09-04T01:57:36.638Z";
9
+ export declare const BUILD_TIME = "2025-09-03T22:46:10.527Z";
10
10
  export declare const BUILD_ENV = "production";
11
11
  declare const _default: {
12
12
  version: string;
@@ -1 +1 @@
1
- {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,eAAO,MAAM,WAAW,UAAU,CAAC;AACnC,eAAO,MAAM,QAAQ,iBAAiB,CAAC;AACvC,eAAO,MAAM,eAAe,oDAAoD,CAAC;AAGjF,eAAO,MAAM,UAAU,6BAA6B,CAAC;AACrD,eAAO,MAAM,SAAS,eAAe,CAAC;;;;;;;;AAGtC,wBAME"}
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,eAAO,MAAM,WAAW,kBAAkB,CAAC;AAC3C,eAAO,MAAM,QAAQ,iBAAiB,CAAC;AACvC,eAAO,MAAM,eAAe,oDAAoD,CAAC;AAGjF,eAAO,MAAM,UAAU,6BAA6B,CAAC;AACrD,eAAO,MAAM,SAAS,eAAe,CAAC;;;;;;;;AAGtC,wBAME"}
package/dist/version.js CHANGED
@@ -4,12 +4,12 @@
4
4
  * This file contains build-time constants to avoid runtime package.json resolution
5
5
  */
6
6
 
7
- export const CLI_VERSION = '1.5.7';
7
+ export const CLI_VERSION = '1.6.0-alpha.0';
8
8
  export const CLI_NAME = '@elizaos/cli';
9
9
  export const CLI_DESCRIPTION = 'elizaOS CLI - Manage your AI agents and plugins';
10
10
 
11
11
  // Build metadata
12
- export const BUILD_TIME = '2025-09-04T01:57:36.638Z';
12
+ export const BUILD_TIME = '2025-09-03T22:46:10.527Z';
13
13
  export const BUILD_ENV = 'production';
14
14
 
15
15
  // Export as default for convenience
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/cli",
3
- "version": "1.5.7",
3
+ "version": "1.6.0-alpha.0",
4
4
  "description": "elizaOS CLI - Manage your AI agents and plugins",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -74,16 +74,16 @@
74
74
  "typescript": "5.8.3",
75
75
  "vite": "^6.3.5"
76
76
  },
77
- "gitHead": "c119e1e792c4d2c1a72bf5cef6bfce4d590515b3",
77
+ "gitHead": "6793ce9e65a02392af1cb72ddf8a82c6634b80cf",
78
78
  "dependencies": {
79
79
  "@anthropic-ai/claude-code": "^1.0.35",
80
80
  "@anthropic-ai/sdk": "^0.54.0",
81
81
  "@clack/prompts": "^0.11.0",
82
- "@elizaos/api-client": "1.5.7",
83
- "@elizaos/core": "1.5.7",
84
- "@elizaos/plugin-bootstrap": "1.5.7",
85
- "@elizaos/plugin-sql": "1.5.7",
86
- "@elizaos/server": "1.5.7",
82
+ "@elizaos/api-client": "1.6.0-alpha.0",
83
+ "@elizaos/core": "1.6.0-alpha.0",
84
+ "@elizaos/plugin-bootstrap": "1.6.0-alpha.0",
85
+ "@elizaos/plugin-sql": "1.6.0-alpha.0",
86
+ "@elizaos/server": "1.6.0-alpha.0",
87
87
  "bun": "^1.2.21",
88
88
  "chalk": "^5.4.1",
89
89
  "chokidar": "^4.0.3",
@@ -22,55 +22,38 @@ async function build() {
22
22
  // Clean previous build
23
23
  await cleanBuild('dist');
24
24
 
25
- // Run JavaScript build and TypeScript declarations in parallel
26
- console.log('Starting parallel build tasks...');
27
-
28
- const [buildResult, tscResult] = await Promise.all([
29
- // Task 1: Build with Bun
30
- (async () => {
31
- console.log('📦 Bundling with Bun...');
32
- const result = await Bun.build({
33
- entrypoints: ['./src/index.ts'],
34
- outdir: './dist',
35
- target: 'node',
36
- format: 'esm',
37
- sourcemap: true,
38
- minify: false,
39
- external: ['dotenv', 'fs', 'path', 'https', 'node:*', '@elizaos/core', '@elizaos/cli', 'zod'],
40
- naming: {
41
- entry: '[dir]/[name].[ext]',
42
- },
43
- });
25
+ // Build with Bun
26
+ console.log('Bundling with Bun...');
27
+ const result = await Bun.build({
28
+ entrypoints: ['./src/index.ts'],
29
+ outdir: './dist',
30
+ target: 'node',
31
+ format: 'esm',
32
+ sourcemap: true,
33
+ minify: false,
34
+ external: ['dotenv', 'fs', 'path', 'https', 'node:*', '@elizaos/core', '@elizaos/cli', 'zod'],
35
+ naming: {
36
+ entry: '[dir]/[name].[ext]',
37
+ },
38
+ });
44
39
 
45
- if (!result.success) {
46
- console.error('✗ Build failed:', result.logs);
47
- return { success: false, outputs: [] };
48
- }
40
+ if (!result.success) {
41
+ console.error('✗ Build failed:', result.logs);
42
+ return false;
43
+ }
49
44
 
50
- const totalSize = result.outputs.reduce((sum, output) => sum + output.size, 0);
51
- const sizeMB = (totalSize / 1024 / 1024).toFixed(2);
52
- console.log(`✓ Built ${result.outputs.length} file(s) - ${sizeMB}MB`);
53
-
54
- return result;
55
- })(),
56
-
57
- // Task 2: Generate TypeScript declarations
58
- (async () => {
59
- console.log('📝 Generating TypeScript declarations...');
60
- try {
61
- await $`tsc --emitDeclarationOnly --incremental --project ./tsconfig.build.json`.quiet();
62
- console.log('✓ TypeScript declarations generated');
63
- return { success: true };
64
- } catch (error) {
65
- console.warn('⚠ Failed to generate TypeScript declarations');
66
- console.warn(' This is usually due to test files or type errors.');
67
- return { success: false };
68
- }
69
- })()
70
- ]);
45
+ const totalSize = result.outputs.reduce((sum, output) => sum + output.size, 0);
46
+ const sizeMB = (totalSize / 1024 / 1024).toFixed(2);
47
+ console.log(`✓ Built ${result.outputs.length} file(s) - ${sizeMB}MB`);
71
48
 
72
- if (!buildResult.success) {
73
- return false;
49
+ // Generate TypeScript declarations
50
+ console.log('\nGenerating TypeScript declarations...');
51
+ try {
52
+ await $`tsc --emitDeclarationOnly --incremental --project ./tsconfig.build.json`.quiet();
53
+ console.log('✓ TypeScript declarations generated');
54
+ } catch (error) {
55
+ console.warn('⚠ Failed to generate TypeScript declarations');
56
+ console.warn(' This is usually due to test files or type errors.');
74
57
  }
75
58
 
76
59
  const elapsed = ((performance.now() - start) / 1000).toFixed(2);
@@ -39,11 +39,11 @@
39
39
  "package.json"
40
40
  ],
41
41
  "dependencies": {
42
- "@elizaos/core": "1.5.7",
42
+ "@elizaos/core": "1.6.0-alpha.0",
43
43
  "zod": "^3.24.4"
44
44
  },
45
45
  "devDependencies": {
46
- "@elizaos/cli": "1.5.7",
46
+ "@elizaos/cli": "1.6.0-alpha.0",
47
47
  "dotenv": "16.4.5",
48
48
  "prettier": "3.5.3",
49
49
  "typescript": "5.8.2"