Skip to content

Commit 42afdcf

Browse files
committed
finish test, fix package issues
1 parent 9e95bd0 commit 42afdcf

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

bun.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@
237237
"devDependencies": {
238238
"@docusaurus/module-type-aliases": "3.7.0",
239239
"@docusaurus/types": "3.7.0",
240-
"docusaurus-plugin-typedoc": "1.0.5",
240+
"docusaurus-plugin-typedoc": "1.2.3",
241241
"typedoc": "0.27.9",
242242
"typedoc-plugin-markdown": "4.2.10",
243243
},
@@ -3487,7 +3487,7 @@
34873487

34883488
"docusaurus-lunr-search": ["docusaurus-lunr-search@3.5.0", "", { "dependencies": { "autocomplete.js": "^0.37.0", "clsx": "^1.2.1", "gauge": "^3.0.0", "hast-util-select": "^4.0.0", "hast-util-to-text": "^2.0.0", "hogan.js": "^3.0.2", "lunr": "^2.3.8", "lunr-languages": "^1.4.0", "mark.js": "^8.11.1", "minimatch": "^3.0.4", "rehype-parse": "^7.0.1", "to-vfile": "^6.1.0", "unified": "^9.0.0", "unist-util-is": "^4.0.2" }, "peerDependencies": { "@docusaurus/core": "^2.0.0-alpha.60 || ^2.0.0 || ^3.0.0", "react": "^16.8.4 || ^17 || ^18", "react-dom": "^16.8.4 || ^17 || ^18" } }, "sha512-k3zN4jYMi/prWInJILGKOxE+BVcgYinwj9+gcECsYm52tS+4ZKzXQzbPnVJAEXmvKOfFMcDFvS3MSmm6cEaxIQ=="],
34893489

3490-
"docusaurus-plugin-typedoc": ["docusaurus-plugin-typedoc@1.0.5", "", { "peerDependencies": { "typedoc-plugin-markdown": ">=4.0.0" } }, "sha512-mv8LBJYilGOOPLqaIM3vbYc34m4qwOCpb4WfP24DOPFNj2uiTerw8sg9MGvN6Jx2+J8rq9/WMnjcyz3UMqoIIQ=="],
3490+
"docusaurus-plugin-typedoc": ["docusaurus-plugin-typedoc@1.2.3", "", { "peerDependencies": { "typedoc-plugin-markdown": ">=4.4.0" } }, "sha512-u1l2VlNRDK49A8G3iZW8iRt3LCmE6aeYnkG+nNqQBMVMqiv8Ifwe7gjsoQXTJXDxbMqUiTWWhqOLElP8B9s3fg=="],
34913491

34923492
"dom-converter": ["dom-converter@0.2.0", "", { "dependencies": { "utila": "~0.4" } }, "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA=="],
34933493

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
"react-dom": "19.0.0",
7676
"vitest": "3.0.5",
7777
"@metaplex-foundation/umi": "0.9.2",
78+
"typedoc-plugin-markdown": "4.2.10",
7879
"buffer": "6.0.3",
7980
"@solana/spl-token": "0.4.9",
8081
"solana-bankrun": "0.3.1",

packages/autodoc/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
{
22
"type": "module",
33
"name": "@elizaos/autodoc",
4-
"version": "1.0.0-alpha.7",
4+
"version": "1.0.0-alpha.25",
55
"description": "",
66
"main": "dist/index.js",
77
"module": "dist/index.mjs",
88
"types": "dist/index.d.ts",
9-
"private": true,
109
"scripts": {
1110
"build": "tsup",
1211
"autodoc:dev": "tsup --watch",

packages/cli/src/commands/test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import {
88
AgentRuntime,
99
type Character,
1010
type IAgentRuntime,
11-
type ProjectAgent,
1211
ModelTypes,
12+
type ProjectAgent,
1313
logger,
1414
settings,
1515
stringToUuid

packages/cli/src/utils/build-project.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import * as path from 'node:path';
21
import * as fs from 'node:fs';
2+
import * as path from 'node:path';
33
import { logger } from '@elizaos/core';
44
import { execa } from 'execa';
55

@@ -38,7 +38,7 @@ export async function buildProject(cwd: string, isPlugin = false) {
3838
const packageJsonPath = path.join(cwd, 'package.json');
3939
if (fs.existsSync(packageJsonPath)) {
4040
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8'));
41-
if (packageJson.scripts && packageJson.scripts.build) {
41+
if (packageJson.scripts?.build) {
4242
// Package has a build script, use it
4343
logger.info('Using build script from package.json');
4444

packages/client/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elizaos/client",
3-
"version": "1.0.0-alpha.9",
3+
"version": "1.0.0-alpha.25",
44
"private": true,
55
"sideEffects": false,
66
"type": "module",

packages/docs/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elizaos/docs",
3-
"version": "1.0.0-alpha.0",
3+
"version": "1.0.0-alpha.25",
44
"private": true,
55
"packageManager": "bun@9.4.0",
66
"scripts": {
@@ -36,7 +36,7 @@
3636
"devDependencies": {
3737
"@docusaurus/module-type-aliases": "3.7.0",
3838
"@docusaurus/types": "3.7.0",
39-
"docusaurus-plugin-typedoc": "1.0.5",
39+
"docusaurus-plugin-typedoc": "1.2.3",
4040
"typedoc": "0.27.9",
4141
"typedoc-plugin-markdown": "4.2.10"
4242
},

packages/the-org/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elizaos/the-org",
3-
"version": "workspace:*",
3+
"version": "1.0.0-alpha.25",
44
"main": "dist/index.js",
55
"module": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)