Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
martpie committed Nov 6, 2023
1 parent 2013841 commit 3e50902
Show file tree
Hide file tree
Showing 4 changed files with 915 additions and 788 deletions.
64 changes: 32 additions & 32 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@
"package:checksums": "bash scripts/checksum.sh"
},
"dependencies": {
"@electron/remote": "^2.0.11",
"@electron/remote": "^2.0.12",
"@radix-ui/react-aspect-ratio": "^1.0.3",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-slider": "^1.1.2",
"@tanstack/react-virtual": "3.0.0-beta.57",
"@tanstack/react-virtual": "3.0.0-beta.68",
"chardet": "^1.6.0",
"classnames": "^2.3.2",
"electron-store": "^8.1.0",
Expand All @@ -52,10 +52,10 @@
"iconv-lite": "^0.6.3",
"lodash": "^4.17.21",
"m3ujs": "^0.2.1",
"music-metadata": "^8.1.4",
"nanoid": "^4.0.2",
"pino": "^8.15.0",
"pino-pretty": "^10.2.0",
"music-metadata": "^8.1.5",
"nanoid": "^5.0.3",
"pino": "^8.16.1",
"pino-pretty": "^10.2.3",
"pouchdb": "^8.0.1",
"pouchdb-find": "^8.0.1",
"queue": "^7.0.0",
Expand All @@ -65,48 +65,48 @@
"react-dom": "^18.2.0",
"react-fontawesome": "^1.7.1",
"react-keybinding-component": "^2.0.2",
"react-router-dom": "6.15.0",
"react-router-dom": "6.18.0",
"semver": "^7.5.4",
"svg-inline-react": "^3.2.1",
"zustand": "^4.4.1"
"zustand": "^4.4.6"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.5.1",
"@types/lodash": "^4.14.197",
"@types/pouchdb": "^6.4.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/react-fontawesome": "^1.6.5",
"@types/lodash": "^4.14.200",
"@types/pouchdb": "^6.4.1",
"@types/react": "^18.2.35",
"@types/react-dom": "^18.2.14",
"@types/react-fontawesome": "^1.6.7",
"@types/react-router-dom": "^5.3.3",
"@types/semver": "^7.5.1",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vitejs/plugin-react": "^4.0.4",
"electron": "26.1.0",
"electron-builder": "^24.6.3",
"@types/semver": "^7.5.4",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vitejs/plugin-react": "^4.1.1",
"electron": "27.0.3",
"electron-builder": "^24.8.1",
"electron-devtools-assembler": "^1.2.0",
"electron-vite": "^1.0.27",
"eslint": "^8.48.0",
"electron-vite": "^1.0.28",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"normalize.css": "^8.0.1",
"postcss": "^8.4.29",
"postcss": "^8.4.31",
"postcss-import": "^15.1.0",
"postcss-nested": "^6.0.1",
"postcss-scss": "^4.0.7",
"postcss-scss": "^4.0.9",
"postcss-url": "^10.1.3",
"prettier": "^3.0.3",
"prettier-eslint": "^15.0.1",
"stylelint": "^15.10.3",
"prettier-eslint": "^16.1.2",
"stylelint": "^15.11.0",
"stylelint-config-css-modules": "^4.3.0",
"stylelint-config-standard": "^34.0.0",
"typescript": "^5.2.2",
"typescript-plugin-css-modules": "^5.0.1",
"vite": "^4.4.9",
"vitest": "^0.34.3"
"typescript-plugin-css-modules": "^5.0.2",
"vite": "^4.5.0",
"vitest": "^0.34.6"
}
}
3 changes: 1 addition & 2 deletions src/renderer/views/router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,7 @@ function GlobalErrorBoundary() {
let errorMessage: string;

if (isRouteErrorResponse(error)) {
// error is type `ErrorResponse`
errorMessage = error.error?.message || error.statusText;
errorMessage = error.statusText;
} else if (error instanceof Error) {
errorMessage = error.message;
} else if (typeof error === 'string') {
Expand Down
3 changes: 3 additions & 0 deletions src/shared/types/declarations/react-fontawesome.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
declare module 'react-fontawesome' {
export default class FontAwesome extends React.Component<FontAwesome.FontAwesomeProps> {}
}
Loading

0 comments on commit 3e50902

Please sign in to comment.