Skip to content

Commit 061d2cd

Browse files
author
mike dupont
committed
scan
1 parent fd98c60 commit 061d2cd

File tree

4 files changed

+50
-33
lines changed

4 files changed

+50
-33
lines changed

scripts/jsdoc-automation/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"dbg": "node --inspect-brk --loader ts-node/esm src/index.ts",
1414
"dbg2": "node --inspect --loader ts-node/esm src/index.ts",
1515
"dbg3": "npx --node-options=--inspect-brk tsx ./src/index",
16-
"ts": "npx tsx src/index",
16+
"ts": "NODE_ENV=development VERBOSE=true DEFAULT_LOG_LEVEL=debug DEBUG=eliza:* npx tsx src/index",
1717
"clean": "rm -rf node_modules dist"
1818
},
1919
"keywords": [],
@@ -41,8 +41,8 @@
4141
"devDependencies": {
4242
"@hapi/shot": "^6.0.1",
4343
"@types/hapi": "^18.0.14",
44-
"@types/hapi__shot": "^6.0.0",
45-
"@types/node": "^20.17.19",
44+
"@types/hapi__shot": "4.1.6",
45+
"@types/node": "22.13.10",
4646
"@typescript-eslint/parser": "^8.26.0",
4747
"@typescript-eslint/types": "^8.26.0",
4848
"ts-node": "^10.9.2",

scripts/jsdoc-automation/pnpm-lock.yaml

+35-28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/jsdoc-automation/scan.sh

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
# in bash count down from 42 to 1
3+
INPUT_PULL_NUMBER=40
4+
while [ $INPUT_PULL_NUMBER -gt 0 ]
5+
do
6+
echo $INPUT_PULL_NUMBER
7+
((INPUT_PULL_NUMBER--))
8+
export INPUT_PULL_NUMBER
9+
pnpm run ts
10+
done

scripts/jsdoc-automation/src/AIService/AIService.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as dotenv from "dotenv";
22
import * as sqliteAdapter from "@elizaos-plugins/adapter-sqlite";
33
const de = dotenv.config();
4-
console.log("DEBUG",de)
4+
//console.log("DEBUG",de)
55

66
const logFetch = async (url: string, options: any) => {
77
console.debug(`Fetching ${url}`);
@@ -194,7 +194,7 @@ export class AIService {
194194

195195
const de = dotenv.config();
196196

197-
console.log("DEBUG",de)
197+
//console.log("DEBUG",de)
198198

199199
let key = ""
200200

0 commit comments

Comments
 (0)