Skip to content
This repository has been archived by the owner on Apr 17, 2024. It is now read-only.

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Sep 16, 2021
1 parent cd8e3b4 commit e4faa6e
Show file tree
Hide file tree
Showing 3 changed files with 121 additions and 144 deletions.
2 changes: 1 addition & 1 deletion auth0/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ async function checkSession(
} catch (err) {
if (err instanceof AuthenticationError) {
throw new PaackAuthError(err);
} else {
} else if (err instanceof Error) {
throw new InvalidError(err);
}
}
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"homepage": "https://github.com/PaackEng/frontend-elm-kit#readme",
"dependencies": {
"elm-optimize-level-2": "^0.1.5",
"esbuild": "^0.12.22",
"esbuild": "^0.12.24",
"esbuild-plugin-elm": "^0.0.4"
},
"peerDependencies": {
Expand All @@ -48,11 +48,11 @@
"devDependencies": {
"@auth0/auth0-spa-js": "^1.17.0",
"@types/elm": "^0.19.0",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
"typescript": "^4.4.2"
},
"bin": {
"paack-elm-wrapper": "bin/elm-wrapper.sh",
Expand Down
Loading

0 comments on commit e4faa6e

Please sign in to comment.