Skip to content

Commit

Permalink
fix(all): dependencies update break the build (release)
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-chervet committed Nov 30, 2023
1 parent 6027511 commit d1480fb
Show file tree
Hide file tree
Showing 4 changed files with 1,053 additions and 684 deletions.
22 changes: 11 additions & 11 deletions package.json
Expand Up @@ -27,26 +27,26 @@
"build": "pnpm -r --filter=./packages/* run build"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@typescript-eslint/eslint-plugin": "6.13.1",
"@typescript-eslint/parser": "6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^8.8.0",
"eslint-define-config": "^1.21.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-n": "16.3.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-regexp": "^1.15.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-testing-library": "^5.11.0",
"prettier": "^3.0.0",
"prettier": "3.1.0",
"tslib": "^2.6.2",
"tsx": "^3.12.7",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
"tsx": "4.6.1",
"typescript": "5.3.2",
"vitest": "0.34.6"
},
"engines": {
"node": "16.* || >= 18.0.0"
Expand Down
3 changes: 2 additions & 1 deletion packages/oidc-client/src/fetch.ts
@@ -1,7 +1,8 @@
import {Fetch} from "./types";
import {OidcClient} from "./oidcClient";

export const fetchWithTokens = (fetch: Fetch, oidcClient: OidcClient | null) => async (...params: Parameters<Fetch>) => {
// @ts-ignore
export const fetchWithTokens = (fetch: Fetch, oidcClient: OidcClient | null) : Fetch => async (...params: Parameters<Fetch>) :Promise<Response> => {
const [url, options, ...rest] = params;
const optionTmp = options ? { ...options } : { method: 'GET' };
let headers = new Headers();
Expand Down

0 comments on commit d1480fb

Please sign in to comment.