Skip to content

Commit

Permalink
dependencies bump
Browse files Browse the repository at this point in the history
  • Loading branch information
andresgnlez committed Apr 24, 2024
1 parent f649f12 commit 8c23d5b
Show file tree
Hide file tree
Showing 10 changed files with 4,346 additions and 5,089 deletions.
2 changes: 1 addition & 1 deletion client/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.15
v20.12.2
823 changes: 0 additions & 823 deletions client/.yarn/releases/yarn-3.3.1.cjs

This file was deleted.

893 changes: 893 additions & 0 deletions client/.yarn/releases/yarn-4.1.1.cjs

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion client/.yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
compressionLevel: mixed

enableGlobalCache: false

nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-3.3.1.cjs
yarnPath: .yarn/releases/yarn-4.1.1.cjs
2 changes: 1 addition & 1 deletion client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.15-bullseye-slim
FROM node:20.12-bullseye-slim

ARG UID=5000
ARG GID=5000
Expand Down
23 changes: 10 additions & 13 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --report-unused-disable-directives warn",
"check-types": "tsc --noemit -p tsconfig.json",
"lint": "next lint",
"check-types": "tsc",
"prettier": "prettier --config .prettierrc.json --check --write \"./src/**/*.{tsx,jsx,ts,js}\"",
"cypress": "cypress open",
"cypress:headless": "cypress run --browser chrome",
Expand Down Expand Up @@ -74,9 +74,8 @@
"lottie-react": "2.4.0",
"lucide-react": "0.344.0",
"maplibre-gl": "3.6.2",
"next": "13.5.5",
"next-auth": "4.19.2",
"pino": "8.1.0",
"next": "14.2.2",
"next-auth": "4.24.7",
"postcss": "8.4.31",
"query-string": "8.1.0",
"rc-tree": "5.7.0",
Expand Down Expand Up @@ -108,13 +107,13 @@
"@types/geojson": "7946.0.14",
"@types/lodash-es": "4.17.6",
"@types/node": "16.11.6",
"@types/react": "18.2.28",
"@types/react-dom": "18.2.13",
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"@types/uuid": "^9.0.5",
"@typescript-eslint/eslint-plugin": "7.7.0",
"@typescript-eslint/eslint-plugin": "7.7.1",
"cypress": "13.2.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.1",
"eslint-config-next": "14.2.2",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"istanbul-reports": "3.0.0",
Expand All @@ -124,9 +123,7 @@
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.10",
"start-server-and-test": "1.14.0",
"typescript": "5.2.2",
"update-browserslist-db": "^1.0.13",
"webpack": "5"
"typescript": "5.4.5"
},
"packageManager": "yarn@3.3.1"
"packageManager": "yarn@4.1.1"
}
1 change: 1 addition & 0 deletions client/src/components/forms/select/autocomplete/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export type AutoCompleteSelectProps<T = string> = Omit<
error?: string;
icon?: React.ReactElement<SVGElement | HTMLDivElement>;
label?: React.ReactNode;
placeholder?: string | undefined;
loading?: boolean;
options: Option<T>[];
showHint?: boolean;
Expand Down
1 change: 1 addition & 0 deletions client/src/components/forms/select/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export type SelectProps<T = string> = Omit<
error?: string;
icon?: React.ReactElement<SVGElement | HTMLDivElement>;
label?: React.ReactNode;
placeholder?: string | undefined;
loading?: boolean;
options: Option<T>[];
showHint?: boolean;
Expand Down
5 changes: 0 additions & 5 deletions client/src/utils/logger.ts

This file was deleted.

Loading

0 comments on commit 8c23d5b

Please sign in to comment.