Skip to content

Commit

Permalink
chore(deps): update project dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Jordan Shatford <[email protected]>
  • Loading branch information
jordanshatford committed Jun 6, 2024
1 parent 6d737c9 commit 7b9cad5
Show file tree
Hide file tree
Showing 10 changed files with 533 additions and 594 deletions.
4 changes: 2 additions & 2 deletions apps/api/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repos:
- id: double-quote-string-fixer
- id: requirements-txt-fixer
- repo: https://github.com/asottile/reorder_python_imports
rev: v3.12.0
rev: v3.13.0
hooks:
- id: reorder-python-imports
args: [--py311-plus]
Expand All @@ -24,7 +24,7 @@ repos:
- id: pyupgrade
args: [--py311-plus]
- repo: https://github.com/hhatto/autopep8
rev: v2.1.0
rev: v2.2.0
hooks:
- id: autopep8
- repo: https://github.com/PyCQA/flake8
Expand Down
6 changes: 3 additions & 3 deletions apps/extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@
"@yd/config": "workspace:*",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"svelte": "^4.2.17",
"svelte": "^4.2.18",
"svelte-check": "^3.8.0",
"tailwindcss": "^3.4.3",
"tslib": "^2.6.2",
"tailwindcss": "^3.4.4",
"tslib": "^2.6.3",
"typescript": "^5.4.5",
"wxt": "^0.18.4"
}
Expand Down
6 changes: 3 additions & 3 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
"@yd/config": "workspace:*",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"svelte": "^4.2.17",
"svelte": "^4.2.18",
"svelte-check": "^3.8.0",
"tailwindcss": "^3.4.3",
"tslib": "^2.6.2",
"tailwindcss": "^3.4.4",
"tslib": "^2.6.3",
"typescript": "^5.4.5",
"vite": "^5.2.12"
}
Expand Down
3 changes: 3 additions & 0 deletions packages/client/openapi-ts.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ export default defineConfig({
path: './src/generated'
},
schemas: false,
services: {
asClass: true
},
types: {
enums: 'javascript'
}
Expand Down
2 changes: 1 addition & 1 deletion packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@hey-api/openapi-ts": "^0.46.3",
"@yd/api": "workspace:*",
"@yd/config": "workspace:*",
"prettier": "^3.3.0",
"prettier": "^3.3.1",
"typescript": "^5.4.5"
}
}
2 changes: 1 addition & 1 deletion packages/client/src/generated/core/ApiRequestOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ export type ApiRequestOptions = {
readonly body?: any;
readonly mediaType?: string;
readonly responseHeader?: string;
readonly errors?: Record<number, string>;
readonly errors?: Record<number | string, string>;
};
4 changes: 2 additions & 2 deletions packages/client/src/generated/core/OpenAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ export class Interceptors<T> {
this._fns = [];
}

eject(fn: Middleware<T>) {
eject(fn: Middleware<T>): void {
const index = this._fns.indexOf(fn);
if (index !== -1) {
this._fns = [...this._fns.slice(0, index), ...this._fns.slice(index + 1)];
}
}

use(fn: Middleware<T>) {
use(fn: Middleware<T>): void {
this._fns = [...this._fns, fn];
}
}
Expand Down
8 changes: 4 additions & 4 deletions packages/config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.39.0",
"globals": "^15.3.0",
"prettier": "^3.3.0",
"prettier-plugin-svelte": "^3.2.3",
"prettier": "^3.3.1",
"prettier-plugin-svelte": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.6.1",
"svelte-eslint-parser": "^0.36.0",
"tailwindcss": "^3.4.3",
"typescript-eslint": "^7.11.0"
"tailwindcss": "^3.4.4",
"typescript-eslint": "^7.12.0"
}
}
6 changes: 3 additions & 3 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"publint": "^0.2.8",
"svelte": "^4.2.17",
"svelte": "^4.2.18",
"svelte-check": "^3.8.0",
"tailwindcss": "^3.4.3",
"tslib": "^2.6.2",
"tailwindcss": "^3.4.4",
"tslib": "^2.6.3",
"typescript": "^5.4.5",
"vite": "^5.2.12"
}
Expand Down
Loading

0 comments on commit 7b9cad5

Please sign in to comment.