Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
santiagolizardo committed Dec 4, 2024
1 parent 8d82f96 commit d2030c8
Show file tree
Hide file tree
Showing 6 changed files with 1,191 additions and 589 deletions.
614 changes: 307 additions & 307 deletions .yarn/releases/yarn-4.5.1.cjs → .yarn/releases/yarn-4.5.3.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ plugins:
path: .yarn/plugins/@yarnpkg/plugin-licenses.cjs
spec: "https://raw.githubusercontent.com/mhassan1/yarn-plugin-licenses/v0.15.0/bundles/@yarnpkg/plugin-licenses.js"

yarnPath: .yarn/releases/yarn-4.5.1.cjs
yarnPath: .yarn/releases/yarn-4.5.3.cjs
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
"version": "0.0.10",
"dependencies": {
"npm-check-updates": "^17.1.11"
}
},
"packageManager": "[email protected]"
}
42 changes: 21 additions & 21 deletions packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,61 +3,61 @@
"version": "1.0.0",
"type": "module",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.6.0",
"@fortawesome/fontawesome-free": "^6.7.1",
"@reconmap/native-components": "workspace:^",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/node": "^22.10.1",
"@types/react": "^18.3.13",
"@types/react-dom": "^18.3.1",
"@uiw/react-md-editor": "^4.0.4",
"bulma": "^1.0.2",
"countries-and-timezones": "^3.7.2",
"cron-parser": "^4.9.0",
"cronstrue": "^2.51.0",
"cronstrue": "^2.52.0",
"dayjs": "^1.11.13",
"friendly-mimes": "^3.0.1",
"http-status-codes": "^2.3.0",
"i18next": "^23.16.5",
"i18next": "^24.0.5",
"i18next-browser-languagedetector": "^8.0.0",
"javascript-time-ago": "^2.5.11",
"keycloak-js": "^26.0.5",
"keycloak-js": "^26.0.7",
"path-browserify": "^1.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.5",
"react-hot-toast": "^2.4.1",
"react-i18next": "^15.1.1",
"react-i18next": "^15.1.3",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.28.0",
"react-router-dom": "^7.0.2",
"react-select": "^5.8.3",
"react-time-ago": "^7.3.3",
"recharts": "^2.13.3",
"typescript": "^5.6.3",
"ua-parser-js": "^1.0.39",
"recharts": "^2.14.1",
"typescript": "^5.7.2",
"ua-parser-js": "^2.0.0",
"xterm": "^5.3.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^2.1.5",
"eslint": "^9.15.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"jsdom": "^25.0.1",
"npm-check-updates": "^17.1.11",
"prettier": "^3.3.3",
"stylelint": "^16.10.0",
"prettier": "^3.4.2",
"stylelint": "^16.11.0",
"stylelint-config-standard": "^36.0.1",
"vite": "^5.4.11",
"vite": "^6.0.2",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.2",
"vitest": "^2.1.5"
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.1.8"
},
"scripts": {
"lint": "eslint . --ext .js",
Expand Down
8 changes: 4 additions & 4 deletions packages/app/src/components/ui/UserAgentLabel.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import UAParser from 'ua-parser-js';
import { UAParser } from "ua-parser-js";

const UserAgentLabel = ({userAgent}) => {
const UserAgentLabel = ({ userAgent }) => {
const parser = new UAParser(userAgent);
const browserName = parser.getBrowser().name;

Expand All @@ -11,7 +11,7 @@ const UserAgentLabel = ({userAgent}) => {
description = userAgent;
}

return <span title={userAgent}>{description}</span>
}
return <span title={userAgent}>{description}</span>;
};

export default UserAgentLabel;
Loading

0 comments on commit d2030c8

Please sign in to comment.