Skip to content
This repository was archived by the owner on Jul 14, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
notes.txt
dist/
src/version.ts
src/api.ts
node_modules/
.idea
octomind.config.json
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
"octomind": "./dist/index.js"
},
"scripts": {
"lint": "npx genversion -des src/version.ts && eslint src/**/*.ts tests/**/*.ts --max-warnings=0",
"lint": "pnpm apigen &&npx genversion -des src/version.ts && eslint src/**/*.ts tests/**/*.ts --max-warnings=0",
"apigen": "openapi-typescript ./openapi.yaml --output src/api.ts",
"build": "npx genversion -des src/version.ts && pnpm apigen && tsc --project tsconfig.build.json",
"octomind": "tsx src/index.ts",
"build": "pnpm apigen && npx genversion -des src/version.ts && tsc --project tsconfig.build.json",
"octomind": "pnpm apigen && tsx src/index.ts",
"test": "pnpm apigen && npx genversion -des src/version.ts && jest",
"test:watch": "npx genversion -e src/version.ts && jest --watch"
"test:watch": "pnpm apigen && npx genversion -e src/version.ts && jest --watch"
},
"keywords": [],
"author": "",
Expand Down Expand Up @@ -46,4 +46,4 @@
"tsx": "^4.19.3",
"typescript": "^5.0.4"
}
}
}
Loading