Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
santiagolizardo committed Jun 6, 2024
1 parent bb55a4f commit 294df3d
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 188 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"i18next": "^23.11.5",
"i18next-browser-languagedetector": "^7.2.1",
"javascript-time-ago": "^2.5.10",
"keycloak-js": "^23.0.7",
"keycloak-js": "^24.0.5",
"path-browserify": "^1.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
Expand All @@ -42,7 +42,7 @@
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^14.3.1",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^6.21.0",
Expand All @@ -56,7 +56,7 @@
"eslint-plugin-react-hooks": "^4.6.2",
"jsdom": "^22.1.0",
"npm-check-updates": "^16.14.20",
"prettier": "^3.3.0",
"prettier": "^3.3.1",
"sass": "^1.77.4",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/ExternalLink.test.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ReactDOM from 'react-dom/client';
import { act } from "react-dom/test-utils";
import { act } from "react";
import ExternalLink from "./ExternalLink";

let container = null;
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/Timestamps.test.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ReactDOM from 'react-dom/client';
import { act } from "react-dom/test-utils";
import { act } from "react";
import Timestamps from "./Timestamps";

let container = null;
Expand Down
2 changes: 1 addition & 1 deletion src/components/users/List.test.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { AuthContext } from 'contexts/AuthContext';
import ReactDOM from 'react-dom/client';
import { act } from "react-dom/test-utils";
import { act } from "react";
import { MemoryRouter } from "react-router-dom";
import UsersList from "./List";

Expand Down
Loading

0 comments on commit 294df3d

Please sign in to comment.