-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat!: migrate to OpenAPI v7 * docs: update * refactor: share logger * chore: simplifications * refactor: simplify types generation * chore: disable auto-imports for testing * chore: updates * chore: updates * chore: updates * docs: add migration guide * test: updates
- Loading branch information
1 parent
2b3cb65
commit b6331c8
Showing
32 changed files
with
1,374 additions
and
1,216 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
imports.autoImport=false | ||
typescript.includeWorkspace=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ | |
"name": "nuxt-api-party", | ||
"type": "module", | ||
"version": "1.1.2", | ||
"packageManager": "[email protected].6", | ||
"packageManager": "[email protected].7", | ||
"description": "Securely connect to any API with a server proxy and dynamic composables", | ||
"author": "Johann Schopplich <pkg@johannschopplich.com>", | ||
"author": "Johann Schopplich <hello@johannschopplich.com>", | ||
"license": "MIT", | ||
"homepage": "https://nuxt-api-party.byjohann.dev", | ||
"repository": { | ||
|
@@ -13,12 +13,12 @@ | |
}, | ||
"bugs": "https://github.com/johannschopplich/nuxt-api-party/issues", | ||
"keywords": [ | ||
"nuxt", | ||
"nuxt3", | ||
"api", | ||
"composable", | ||
"query", | ||
"fetch" | ||
"fetch", | ||
"nuxt", | ||
"open-api", | ||
"openapi", | ||
"query" | ||
], | ||
"exports": { | ||
".": { | ||
|
@@ -44,29 +44,32 @@ | |
"lint:fix": "eslint . --fix", | ||
"test": "vitest", | ||
"test:types": "tsc --noEmit", | ||
"release": "bumpp --commit --push --tag" | ||
"release": "bumpp" | ||
}, | ||
"dependencies": { | ||
"@nuxt/kit": "^3.11.2", | ||
"defu": "^6.1.4", | ||
"ofetch": "^1.3.4", | ||
"ohash": "^1.1.3", | ||
"openapi-typescript": "^7.0.0-next.8", | ||
"openapi-typescript-helpers": "^0.0.7", | ||
"pathe": "^1.1.2", | ||
"scule": "^1.3.0", | ||
"ufo": "^1.5.3" | ||
}, | ||
"optionalDependencies": { | ||
"openapi-typescript": "^6.7.5" | ||
}, | ||
"devDependencies": { | ||
"@antfu/eslint-config": "^2.12.2", | ||
"@antfu/eslint-config": "^2.14.0", | ||
"@nuxt/module-builder": "^0.5.5", | ||
"@nuxt/test-utils": "^3.12.0", | ||
"@types/node": "^20.12.5", | ||
"@nuxt/test-utils": "^3.12.1", | ||
"@types/node": "^20.12.7", | ||
"bumpp": "^9.4.0", | ||
"eslint": "^8.57.0", | ||
"eslint": "^9.0.0", | ||
"nuxt": "^3.11.2", | ||
"typescript": "^5.4.4", | ||
"vitest": "^1.4.0" | ||
"typescript": "^5.4.5", | ||
"vitest": "^1.5.0", | ||
"vue-tsc": "^2.0.13" | ||
}, | ||
"resolutions": { | ||
"nuxt-api-party": "link:." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.