mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-06 08:18:58 +00:00
Fix relative path in fabro-api-client generate script
The path was two levels up (../../) but needs three (../../../) since the package lives at lib/packages/fabro-api-client. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
1f3678c214
commit
88e0cea110
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@
|
|||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"generate": "bunx @openapitools/openapi-generator-cli generate -i ../../docs/api-reference/fabro-api.yaml -g typescript-axios --additional-properties=supportsES6=true,typescriptThreePlus=true,withSeparateModelsAndApi=true,apiPackage=api,modelPackage=models,useTags=true,enumPropertyNaming=UPPERCASE -o src"
|
||||
"generate": "bunx @openapitools/openapi-generator-cli generate -i ../../../docs/api-reference/fabro-api.yaml -g typescript-axios --additional-properties=supportsES6=true,typescriptThreePlus=true,withSeparateModelsAndApi=true,apiPackage=api,modelPackage=models,useTags=true,enumPropertyNaming=UPPERCASE -o src"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "^1.7.0"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue