Skip to content

Commit ae43c99

Browse files
committed
fix autodoc path and name
1 parent 725ee0a commit ae43c99

27 files changed

+7
-7
lines changed

.github/workflows/jsdoc-automation.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ jobs:
6363
run: bun install
6464

6565
- name: Install package dependencies
66-
working-directory: packages/autodocs
66+
working-directory: packages/autodoc
6767
run: bun install
6868

6969
- name: Build TypeScript
70-
working-directory: packages/autodocs
70+
working-directory: packages/autodoc
7171
run: bun run build
7272

7373
- name: Run documentation generator
74-
working-directory: packages/autodocs
74+
working-directory: packages/autodoc
7575
run: bun run autodoc
7676
env:
7777
INPUT_ROOT_DIRECTORY: ${{ inputs.root_directory }}
File renamed without changes.
File renamed without changes.
File renamed without changes.

packages/autodocs/package.json packages/autodoc/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"type": "module",
3-
"name": "@elizaos/autodocs",
3+
"name": "@elizaos/autodoc",
44
"version": "1.0.0",
55
"description": "",
66
"main": "dist/index.js",
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from "./AIService.js";
2+
export * from "./types/index.js";

packages/autodocs/src/Configuration.ts packages/autodoc/src/Configuration.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export class Configuration implements Omit<ConfigurationData, "rootDirectory"> {
133133
console.log("Falling back to workflow file configuration");
134134
const workflowPath = join(
135135
this.repoRoot,
136-
".github/workflows/autodocs.yml",
136+
".github/workflows/jsdoc-automation.yml",
137137
);
138138
if (!fs.existsSync(workflowPath)) {
139139
throw new Error(`Workflow file not found at ${workflowPath}`);
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

packages/autodocs/src/AIService/index.ts

-2
This file was deleted.

0 commit comments

Comments
 (0)