Skip to content

Commit

Permalink
update javascript dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Kai Helbig <[email protected]>
  • Loading branch information
ostrya committed Oct 6, 2023
1 parent 983e399 commit 3406810
Show file tree
Hide file tree
Showing 3 changed files with 293 additions and 216 deletions.
8 changes: 4 additions & 4 deletions example-frontend-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"private": true,
"license": "Apache-2.0",
"dependencies": {
"axios": "^1.2.3",
"keycloak-js": "^20.0.3",
"axios": "^1.5.1",
"keycloak-js": "^22.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1"
Expand All @@ -29,7 +29,7 @@
"not op_mini all"
],
"devDependencies": {
"cypress": "^12.3.0",
"cypress-keycloak": "^2.0.0"
"cypress": "^13.2.0",
"cypress-keycloak": "^2.0.1"
}
}
2 changes: 1 addition & 1 deletion example-frontend-react/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import App from './App';
import Keycloak from 'keycloak-js';
import axios from 'axios';

const kc = Keycloak('/keycloak.json');
const kc = new Keycloak('/keycloak.json');

kc.init({onLoad: 'login-required', promiseType: 'native', enableLogging: true})
.then(authenticated => {
Expand Down
Loading

0 comments on commit 3406810

Please sign in to comment.